I have a third party product that my company host in SQL Server Database. Over time we have needed to add some of our data and want to use some of the third party data so we have a service that pulls data from various tables on a time interval and then load them in another database that was constructed by my company.
Rather than using a service to pull the data from one databasse to another on set intervals does Microsoft have any tools that do this? To me this seems like a utility that sql server might have to all another sql server database to pull data on some scheduled timer?
Any ideas on how to do this?
Loading
Anupam SinghPosted May 19, 2014, 1:45 AM
of course you can connect sql server different instance using linked server.
find the steps here http://sqlserverplanet.com/dba/how-to-add-a-linked-server
then create procedure using linked server and schedule it on job.
Lawrence PondPosted May 19, 2014, 1:38 AM
Anupam SinghPosted May 19, 2014, 1:07 AM
But you can schedule job in sql server for the same.
Lawrence PondPosted May 19, 2014, 12:53 AM
Anupam SinghPosted May 18, 2014, 8:34 AM
Yes, sql server has a great feature called Replication.You can achieve the same using Replication here is the step by step process described
http://www.codeproject.com/Articles/715550/SQL-Server-Replication-Step-by-Step
Hope it will help.