I want to dump my excel data into sql database
I want to made synchronization between SQL and Excel
Can anybody help me on this
Thanks
Rohan
I want to dump my excel data into sql database
I want to made synchronization between SQL and Excel
Can anybody help me on this
Thanks
Rohan
You can use SQL Server Import and Export Wizard (here is a good guide to import and export data). After import/export procedure you can save SSIS package based on what you just did and then use it in job to run it by schedule (good guide here).
EDIT
Also you can use linked server for this. Please, read this article.
One more way is to create macros that will update data on SQL Server side after changing the excel file.
But all options has one ultimate flaw: they can not provide online update in both sources. Only on demand (macros, job, SSIS package etc.)