sql - How to update a table copy in another database -
I have two similar databases - one for development (DEV) and one for production (PROD) (both SQL Server 2008 ).
I updated the content of a certain table in DEV and now I want to sync the related table in PROD.
I have not changed the table schema, only some data inside the table (I have changed both existing rows and added some new rows).
How can I move changes easily in the related table in DEV in Prodi?
Note that the values of the auto-detect column mgiht do not match exactly between the two tables, however, I know that I only made changes in the row with the same value in the second column.
if you do not want to use replication , You can update, update the trigger in the DEV database, and trigger the PROD by triggering. Or you can create a view of the DEV database table on the PRO database database.
Comments
Post a Comment