我有兩個數據庫服務器如何從一個數據庫使用SQL Server
一個複製表和數據到另一個數據庫服務器名稱:X,另一個是服務器名稱:Y
我有一個表ABC
在兩個數據庫中。我需要將數據從X服務器,表ABC
複製到Y服務器,表ABC
。
我試過這種方式給它的錯誤。
INSERT INTO [X].Database.dbo.ABC SELECT * FROM [Y].Database.dbo.ABC
,但我得到這個錯誤:
Could not find server 'xxx.xxx.xxx.xxx' in sys.servers. Verify that the correct server name was specified. If necessary, execute the stored procedure sp_addlinkedserver to add the server to sys.servers.
你運行過'sp_addlinkedserver'嗎? – Dave