How to increase performance for bulk INSERTs to ODBC linked tables in Access?
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 INTO METER_DATA ([MPO_REFERENCE]) SELECT MPO_REFERENCE FROM tblTempSmartSSP;"` tblTempSmartSSP is an