I need to create a facility to enable users to repeatedly transfer the contents of tables in an .mdb
to identically structured tables in SQL Server (emphasis on 'user' and 'repeatedly').
- I wish to avoid the 'built-in' management tools of SQL Server
- My preference is for using SQL Server express
- I don't want to re-create the SQL database or table structures each time
Is my only option a loop through the rows of the .mdb
table, while INSERTing its contents line by line?
If the answer is yes, what limit can I expect to the number of rapid INSERTS?