Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

duplicate data between database

Status
Not open for further replies.

Guest_imported

New member
Joined
Jan 1, 1970
Messages
0
hello all,

I want to duplicate the data between 2 SQL 2000 database automatically(ie. when i update data in one database, the other will update corresponding table automatically). I am new in SQL2000.Anyone know how to set it in SQL2000?

Thanks,
May May
 
Hi
You need to setup replication between the two servers and then publish what ever tables you need to copy.

You can do that from enterprise manager; or you can write update/delete/insert triggers into tables that need to be copied. essentially you have to insert/update/delete the same record at both tables in both databases using linked servers.

Read about replication in sql books online.

Good luck



 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top