Sql Server查詢遠程db 表資料到本地,sqldb

來源:互聯網
上載者:User

Sql Server查詢遠程db 表資料到本地,sqldb
step 1: 


sp_configure 'show advanced options', 1;RECONFIGURE;sp_configure 'Ad Hoc Distributed Queries', 1;RECONFIGURE;GO



step 2:



insert into table_namecolumnsSELECT columns FROM OPENROWSET('SQLNCLI', 'Server=XXXX,1433;uid=XXXX;pwd=XXXX;Database=cb_name;','SELECT * FROM table_name') 




sqlserver把遠端資料庫的資料匯入到本機資料庫的sql語句怎寫

insert inot user
select * from opendatasource('sqloledb','server=192.168.0.1;uid=sa;pwd=dbpasswords;database=dbname').dbname.dbo.user_copy
 
sql server遠程伺服器中資料庫中的表資料怎匯入本機伺服器中資料庫中的表資料

你這個遠端資料庫,你能直接用sqlserver的用戶端訪問嗎?

如果可以,是否可以考慮建立資料庫連接(linked server)

然後 通過

insert into t_1 select * from 串連伺服器.t_2 (具體怎麼寫,查一下)

的方法,把資料拷貝過來 ?
 

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.