I want to transfer data from tableA to tableB using SSIS. These tables are in the same server and database I am using OLEDB source and OLEDB destination. However it does not write any rows and there are no errors being reported. If I change OLEDB source to read from a different server with the same database name it works. How can I recreate the SSIS package? All help appreciated.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Try to Use ADO.NET source and destination instead of OLEDB. It wouldn't be problem if the tables are on same server, and database. Create an Execute SQL task, which truncate you destination table. Create a dataflow task, and create an ADO.NET source and destination inside the task. If you haven't created package before: you can also create SSIS package with ImportExportTool like this: SSIS Tutorial, and check the Save SSIS package checkbox. After the tool created the package, you can open it in visual studio and modify it. The package will contain OLEDB source and destinations. It should work. The data transformation components are very useful for a couple of issue. |
|||