SSIS Migration - Pulling IDs from dest DB?
Posted
by
TheSciz
on Stack Overflow
See other posts from Stack Overflow
or by TheSciz
Published on 2011-11-16T17:21:04Z
Indexed on
2011/11/16
17:51 UTC
Read the original article
Hit count: 159
So I'm working on migrating some data to a new server. In the new server, each entry in the MAIN table is assigned a new GUID when the transfer takes place. A few other tables must be migrated, and their records must link to the GUID in the MAIN table. Example...
WorksheetID --- GUID
1245677903 --- 1
AccidentID --- WorksheetID --- Guid
12121412 --- 1245677903 --- 1
The guid is used moreso for versioning purposes, but my question is this. In SSIS, is there any way to pull the Worksheet's GUID from the destination database and assign it directly to the entries in the 'Accident' table? Or do I have to just dump the data into the source DB and run some scripts to get everything nicely referenced? Any help would be greatly appreciated.
© Stack Overflow or respective owner