Is it possible to copy the data in a remote MSSQL table to a local Table?
问题 What is the best way to go about doing this? I have found some INSERT statements, but they all seem to work just for inner-database copying. My rendition: INSERT INTO [PROGRAM003].[dbo].[faq] ([id], [category], [question], [answer], [tags]) SELECT ([id], [category], [question], [answer], [tags]) FROM [SQL2005_552664_gsow].[dbo].[faq] I am not very fluent with MSSQL yet, so any and all help is appreciated. 回答1: You can use OPENDATASOURCE or OPENROWSET to access tables on other servers. You'll