2012-02-24 262 views
0

我試圖將一個表從實時遠程服務器複製到本地開發機器上。我想:將SQL服務器數據庫表從一臺服務器複製到另一臺服務器

select * 
into mmm 
from [sqlb8.webcontrolcenter.com].[1photo].[kelraie].[pix] 

但得到這個錯誤:

Msg 7202, Level 11, State 2, Line 1 Could not find server 'sqlb8.webcontrolcenter.com' 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. 

如何鏈接服務器?還是有更簡單的方法來做到這一點? 謝謝 Khaled

回答

1

鏈接的服務器可以使用您的系統上的其他供應商的驅動程序,讓您可以直接從SQL查詢中來自該源的服務器。就你而言,它可能看起來像你試圖連接到基於Web的SQL版本,這可能不如設置鏈接服務器那麼簡單。根據您訪問數據的方式,您可能需要創建備份或使用其他方法來傳遞憑據以便能夠訪問源。

0

如果您擁有SQL Server 2008 Express或更高版本,它將附帶一個「導入/導出」嚮導來執行此操作。

相關問題