Hello All!
I have an MS Access accdb with linked SQL Server 2012 ODBC tables. I am working on a procedure to copy data from local tables to these linked tables (identical schema). I did a simple
This works, but is very slow. Way too slow. (INSERT copies the data one record at a time).
I would like to copy the data in a bulk operation, or operations that I can execute programmatically.
Have any of you smart people ever encountered this and developed a solution?
Thanks in advance for any help!
CHAD
I have an MS Access accdb with linked SQL Server 2012 ODBC tables. I am working on a procedure to copy data from local tables to these linked tables (identical schema). I did a simple
Code:
DoCmd.RunSQL "INSERT INTO linkedTable SELECT * FROM localTable"
I would like to copy the data in a bulk operation, or operations that I can execute programmatically.
Have any of you smart people ever encountered this and developed a solution?
Thanks in advance for any help!

CHAD