I am new to StackOverflow, and not and expert coder. I have created a VBA sub to load a tab-separated file (160k records, about 20 columns) as a recordset (Recordset.Open method) within less then a second.
I then need to move it into a MS Access 2013 table for further processing with several queries. If I run a DoCmd.Import method into a table it takes about 1000 seconds (x2000 longer)
Is there any way to move all the records from the recordset into a table (existing or not) other then go through the entire recordset and append a record at a time?
Thanks
DoCmd.Importmethod does more work than simply loading a csv into a recordset. The Access method needs to then append into a defined table schema. - Parfait