Reputation: 49
I got a database with 650 tables and need to move the data from these tables to tables in another database. Table names are same in the two databases. We need to add a small transformation(Need to prefix text in one of the columns) in between. I am using SSIS to transfer the data. I think it is very hard to have 650 dataflows. Is there any easy way to have the data transferred along with the transformation.
Thanks in advance
Upvotes: 0
Views: 74
Reputation: 26
Use only one "Transfer SQL server objects" to copy schema and data from the 650 tables, it's very fast and simple.
Then use a simple sql task to add the prefix.
Upvotes: 1