Hey guys I thought this might interest SSIS developers here:
Problem statement:
I have two servers S1 and S2 and the source table is in Server1. There is no destination table in Server2.
I want to move data from server S1 to S2 using a SQL command Select * into <Server2table> From <Server1Table> by creating the table dynamically. Linked servers are not allowed and this has to be done using SSIS.
How would you approach this?
Good luck 🙂