sql - How to actively sync data between databases which are in 2 different servers? -
i have database abc in server 1 , database def in server 2. abc & def both has sql server authentication. need pull data tables in real time abc , store/update in def. both in sql server 2012. there tool doing this? or easy way this?
for first of need add sever in sys.servers want sync destination server.
exec sp_addlinkedserver @server='servername' exec sp_addlinkedsrvlogin 'servername', 'false', null, 'username', 'password@123'
after able access tables of sorurce server destination server.
there no tool sql providing. can export data 1 server other in sql server.
Comments
Post a Comment