I have to similar databases on different instances.
I needed to export All data in All tables from One instance to another.
The problem i am having is i need to keep all the Unique Id’s from the columns that i have the identity insert on.
Example:
Value of (Instance1–>Table1–>Id(Identity Column)) needs to be the same as:
Value of (Instance2–>Table1–>Id(Identity Column)).
On your OLEDB destination, there is an option called
KeepIdentitySelect this option. This is the equilavent ofSET IDENTITY_INSERT ON