I have rewritten an old program and designed a new database for it. I need to transfer the old data to the new database. The new database has a new schema, so I will have to manipulate much of the data that is going to be transfered.
I have thought about writing a console app with 2 linq to sql contexts, one for each database and coding the transformation logic and the inserts.
I have also thought about using SSIS, but I have never used it before.
Is SSIS suited for this sort of thing? Where can I learn how to do this in SSIS?