I'm trying to create an SSIS package that will do a straight data copy between databases. The problem is that the underlying schema of the origin may change and the requirement is that the transfer be table driven. i.e. the tables that are copied are listed in a table and there should be no human intervention when the schema changes.I'm moving data between SQL Server and SQL Azure, so backup and restore doesn't work. Has to be an SSIS package.What's the best way to deal with a changing schema in an SSIS package? Can I delete and rewrite the underlying XML for any tables that change? Do I need to do it programmatically with C#? Do I need to create the package from scratch each time?If you could point me at some possibilities, I'd appreciate it. I'm having trouble googling this because I'm not sure what to call it.
↧