glgcag1991
Programmer
I have been given the task of converting several Access databases to SQL Server 2005- I'm doing it in stages so I have the need to import Access data into the SQL Server hourly for the users that will consume it read-only for now.
What is the best process for doing the hourly import:
1. Complete table import (if so, how does the DROP TABLE and CREATE TABLE impact performance if I have heavy usage of that table during the hourly import?)
2. Compare Access table with SQL Server table and only import new records. (If so, with primary keys I will have to drop the primary key constraint on the tables, import the new records, then add the constraint back, right? Again, how will that impact heavy usage during the hourly import?)
I have looked a bit at Linked Servers but I need to do some transformations in the hourly SSIS job so that the data fits into the different architecture I have between the Access and SQL Server databases.
I appreciate the help!
What is the best process for doing the hourly import:
1. Complete table import (if so, how does the DROP TABLE and CREATE TABLE impact performance if I have heavy usage of that table during the hourly import?)
2. Compare Access table with SQL Server table and only import new records. (If so, with primary keys I will have to drop the primary key constraint on the tables, import the new records, then add the constraint back, right? Again, how will that impact heavy usage during the hourly import?)
I have looked a bit at Linked Servers but I need to do some transformations in the hourly SSIS job so that the data fits into the different architecture I have between the Access and SQL Server databases.
I appreciate the help!