Reputation: 16081
I am extracting data from excel files where the data accumulates in the same excel file each week. For example, week X will contain data from week 1 through week X. Then week X+1 will contain data from week 1 through week X+1. What is the most efficient way to load this accumulated data into a database? Currently, I am clearing the entire database then loading data from weeks 1 through the current week. Obviously this process is inefficient as I am clearing data from my database only to load it back into the database again...
For the following ideas I have could someone help me decide which is the best route to go? Or if you have any better ideas please let me know. All help is appreciated!
I think a necessary question to get either of the above ideas to work is: In what ways through SSIS can I manipulate data in excel?
Upvotes: 1
Views: 452
Reputation: 3939
SELECT * FROM [Sheet1$] where extractdate > ?
Upvotes: 3