【總結】跨服務器操做數據庫

update TaskServer.dbo.TaoBaoItemInfoes set TradeCount30 =(select SOLD_QUANTITY_30 from openrowset( 'SQLOLEDB ', '192.168.1.3'; 'root'; 'jeqee1!',TAOBAO_QA.dbo.TB_ITM_INFO) a where TaskServer.dbo.TaoBaoItemInfoes.Id=a.num_iid)sql

 

若是遇到錯誤安全

 

SQL Server 阻止了對組件 'Ad Hoc Distributed Queries' 的 STATEMENT 'OpenRowset/OpenDatasource' 的訪問,由於此組件已做爲此服務器安全配置的一部分而被關閉。系統管理員能夠經過使用 sp_configure 啓用 'Ad Hoc Distributed Queries'。服務器

 

則執行以下兩條語句開啓Ad Hoc Distributed Queries組件:編輯器

exec sp_configure 'show advanced options',1
reconfigureio

exec sp_configure 'Ad Hoc Distributed Queries',1
reconfiguredva

 

執行完成以後若是須要關閉Ad Hoc Distributed Queries組件,在sql查詢編輯器中執行以下語句:配置

exec sp_configure 'Ad Hoc Distributed Queries',0
reconfigure
exec sp_configure 'show advanced options',0
reconfiguredate

相關文章
相關標籤/搜索