I have some tables in Database A that I need to write to Database B, according to the following mapping:
LOAN.Amount -- writes to --> Asset.Balance
LOAN.Type -- writes to --> AssetNote.Note
LOAN.LienHolderName -- writes to --> Asset.ClientId
CUSTOMER.Id -- writes to --> Client.ClientId
etc. (many more...)
The databases are on the same SQL Server.
What's the best way to do this? SQL? or SSIS maybe?
If SQL, please give me example query.
Much thanks
LOAN.Amount -- writes to --> Asset.Balance
LOAN.Type -- writes to --> AssetNote.Note
LOAN.LienHolderName -- writes to --> Asset.ClientId
CUSTOMER.Id -- writes to --> Client.ClientId
etc. (many more...)
The databases are on the same SQL Server.
What's the best way to do this? SQL? or SSIS maybe?
If SQL, please give me example query.
Much thanks