One of our developers has developed scripts that work to structure the data in a target environment and copy new control type data from a source environment while maintaining the transaction type data from the target environment. Here is an exampleINSERT INTO [SignoffQualification] ([QualifierSignoffTypeID] ,[Qualifier])(SELECT T2.SignoffTypeID, q.Qualifier FROM ([MYDB].[dbo].[SignoffQualification] q left join [MYDB].[dbo].[SignoffType] T1 on q.QualifierSignoffTypeID = T1.SignoffTypeID) left join SignoffType T2 on T1.SignoffTypeName = T2.SignoffTypeName)
The question I have is whether this technique can be used when the two databases are on different servers?