I know 2 ways to import Excel files to SQL Server
1) Use DTS to import
2) Convert the source table to a SQL table and insert rows via an INSERT script.
I would like to write an application to make the insert more automatic a process that needs to happen once or twice a month. Where should I look for the tools to do this? In Excel? In SQL? I want to do as little handling, mapping, and conversion as possible. Thanks for any advice.
1) Use DTS to import
2) Convert the source table to a SQL table and insert rows via an INSERT script.
I would like to write an application to make the insert more automatic a process that needs to happen once or twice a month. Where should I look for the tools to do this? In Excel? In SQL? I want to do as little handling, mapping, and conversion as possible. Thanks for any advice.