odbc

How to increase performance for bulk INSERTs to ODBC linked tables in Access?

我们两清 提交于 2019-12-17 05:12:32
问题 I have CSV and TXT files to import. I am importing the files into Access and then inserting the records into a linked Oracle table. Each file has around 3 million rows and the process is taking a long time to complete. Importing into Access is very fast, but inserting into the linked Oracle table is taking an extremely long time. Here is the process I am currently using: DoCmd.TransferText acImportFixed, "BUSSEP2014 Link Specification", "tblTempSmartSSP", strFName, False db.Execute "INSERT

The specified DSN contains an architecture mismatch between the Driver and Application. JAVA

点点圈 提交于 2019-12-17 02:10:43
问题 I'm trying to connect to a database made by MS Access using Java, but I cannot seem to manage. I am using ODBC and I'm getting this exception: java.sql.SQLException: [Microsoft][ODBC Driver Manager] The specified DSN contains an architecture mismatch between the Driver and Application My Java: package javaapplication2; import java.sql.Statement; import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.SQLException; /** * * @author Owner */ public

How to load data from SQL Server to SAP BW using SSIS

為{幸葍}努か 提交于 2019-12-14 04:19:52
问题 I would like to load data from SQL server to SAP BW using SSIS. Could some one help me on it how can i do it. Currently i am using sql server 2005. 回答1: Why would you use SSIS for that? I would recommend either load using SAP BW standard anyDB source system or using BO Data Services. Both do it natively and well. If you insist, look at: https://theobald-software.com/en/xtract-is-productinfo.html They have the following feature: Xtract IS BW Loader With the Xtract IS BW Loader data target, you

Suppress PHP error from a odbc_connect call

泪湿孤枕 提交于 2019-12-14 04:12:11
问题 Let's say I do a odbc_connect call, deliberately using erroneous information, as follows: <?PHP odbc_connect('bogus','bogus','bogus'); ?> Now, the manual states that odbc_connect "[r]eturns an ODBC connection id or 0 (FALSE) on error". I'm okay with the 0 being returned, but when I'm running the file (using Wampserver), I also receive error messages telling me that something went wrong. I would like to suppress this error message, since I'm trying to build a PHP file that only echoes a

Missing letters of database objects being returned in DBI SQL Server ODBC connection

谁说胖子不能爱 提交于 2019-12-14 03:54:31
问题 Unfortunately, I will not be able to create a good repro for this issue without sharing confidential creds to the database I am having issues with. Hopefully I have enough information below to flag any obvious problems that ODBC experts will understand. Background I am running a MacBook Pro with the following specs: Model Name: MacBook Pro Model Identifier: MacBookPro15,1 Processor Name: 6-Core Intel Core i7 Processor Speed: 2.6 GHz Number of Processors: 1 Total Number of Cores: 6 L2 Cache

Host…not allowed error in ODBC connection, while connecting to an online MySQL database

痞子三分冷 提交于 2019-12-14 03:45:57
问题 I have downloaded MySQL ODBC Connector 5.1. Now am trying to setup the DSN. But am getting the error: Connection Failed : [HY000] [MySQL] [ODBC 5.1 Driver]Host '117.x.x.x' is not allowed to connect to this MySQL server My server url is server.myweb.com - this name am entering in the TCP/IP Server and Port =3306. I have also entered the userid and password , which is the one which i enter when i open www.myweb.com/cpanel Is this a version problem? Should the version of MySQL on my server also

xampp php 7 Call to undefined functions (mysql & odbc)

天涯浪子 提交于 2019-12-14 03:33:12
问题 I updated my xampp to a new version, which now includes php7 all my scripts don't work anymore. I found here some "solutions" which don't works. I get these messages: Fatal error: Uncaught Error: Call to undefined function odbc_connect() Fatal error: Uncaught Error: Call to undefined function mysql_connect() I have the extensions in my php.ini extension=php_bz2.dll extension=php_curl.dll extension=php_fileinfo.dll extension=php_gd2.dll extension=php_gettext.dll ;extension=php_gmp.dll

Error creating connection to Oracle ODBC in Excel

可紊 提交于 2019-12-14 03:29:58
问题 I am trying to connect to Oracle ODBC for OraClient10g_home1 in System DSN.once done,i have tested the connection and it says connection successful.but when i try to import Oracle data from Excel's built-in function (Microsoft Query),it gives me the following error message.please let me know how to fix this issue. Oracle Database Server - 32 Bit,Operating System - Windows 10(64-Bit),Excel Office 2010 (32-Bit) 回答1: in tnsnames.ora you should have an entry for database instance located in

Front-end Access alternative relying on ODBC connection?

时光毁灭记忆、已成空白 提交于 2019-12-14 03:13:21
问题 I've been tasked to take an Access 2007 application that relies on an ODBC connection and share it with other institutions with the same ODBC connection. Please forgive me if I don't communicate this very well. I'm not a developer, but have been tasked with this project since I've gotten it this far. I'm sure that's never happened before... First I'll give a layout of our structure: I work for a college that shares an database via ODBC with 31 other schools. The system office that maintains

VBA Copy & Paste 3000 rows

江枫思渺然 提交于 2019-12-14 02:41:10
问题 my code below, whoch I've copied from a Yahoo Developers articles and changed accordingly, for Query, I want to copy and paste 2999 rows of insert statements from excel to Teradata. My current way doesn't copy and paste the entire range. If I swap this for: Cells(1, 1) & " " & Cells(2, 1) & " " & Cells(3, 1)....etc. until Cells(2999), it would work. A clever, simpler way of doing this please? As an aside, would you recommend an alternative method of inserting 2999 rows. The tables are already