How do you migrate a huge database from one server located at remote location to another at different place?
Its a very common requirement. There is a database at some location across the globe. The database tables contain millions of rows. We are to pull/fetch those rows and insert/update into our local database. There are several solutions suggested but the best one I have tried and found very useful is by using LINKED SERVER . Liked server can be created among the servers across the globe. They may be SQL server generally or one may be some other database as well. Using and creating Linked server does have the following advantages: Remote Server Access The ability to issue distributed queries, commands and transactions on heterogeneous data sources across the enterprise/different locations Let's explain it further : Suppose there is one SQL server at the IP 10.112.79.83 [Located at NY suppose] and my current SQL server is in India. I want to get all the rows from that server. Typically without Linked server, its very difficult to perform this. We can do...