您好,登錄后才能下訂單哦!
MSSQL訪問遠程數據庫可以使用三種方式(openrowset/opendatasource/openquery):
前提:啟用Ad Hoc Distributed Queries
1、啟用Ad Hoc Distributed Queries服務(這個服務不安全,SqlServer默認是關閉)
2、啟用和關閉Ad Hoc Distributed Queries的方法:
若沒有啟用,會出現以下錯誤提示:
SQL Server 阻止了對組件 'Ad Hoc Distributed Queries' 的STATEMENT'OpenRowset/OpenDatasource'的訪問,因為此組件已作為此服務器安全配置的一部分而被關閉。系統管理員可以通過使用sp_configure 啟用 'Ad Hoc Distributed Queries'。有關啟用 'Ad Hoc Distributed Queries' 的詳細信息,請參閱 SQL Server 聯機叢書中的 "外圍應用配置器"。
使用以下語句開啟:
exec sp_configure 'show advanced options',1
reconfigure
exec sp_configure 'Ad Hoc Distributed Queries',1
reconfigure
使用完畢使用以下語句關閉(這是一個安全隱患):
exec sp_configure 'Ad Hoc Distributed Queries',0
reconfigure
exec sp_configure 'show advanced options',0
reconfigure
示例:
1、使用創建鏈接,再使用鏈接操作的方式/openquery:
--創建鏈接服務器
exec sp_addlinkedserver 'ITSV ', ' ', 'SQLOLEDB ', '遠程服務器名或ip地址 '
exec sp_addlinkedsrvlogin 'ITSV ', 'false ',null, '用戶名 ', '密碼 '
--查詢
select * from ITSV.數據庫名.dbo.表名
select * FROM openquery(ITSV, 'SELECT * FROM 數據庫.dbo.表名 ')
--導入
select * into 表 from ITSV.數據庫名.dbo.表名
insert openquery(ITSV, 'SELECT * FROM 數據庫.dbo.表名 ') select * from 本地表
update b set b.列B=a.列B FROM openquery(ITSV, 'SELECT * FROM 數據庫.dbo.表名 ') as a
inner join 本地表 b on a.列A=b.列A --本地表導入遠程表
delete openquery(ITSVA,'select name from 數據庫.dbo.表名where id=1') --刪除
exec sp_dropserver 'ITSV ', 'droplogins ' --以后不再使用時刪除鏈接服務器
2、使用openrowset 連接:
select * from openrowset( 'SQLOLEDB ', 'sql服務器名 '; '用戶名 '; '密碼 ',數據庫名.dbo.表名) --查詢
select * into 本地新表 from openrowset( 'SQLOLEDB ', 'sql服務器名 '; '用戶名 '; '密碼 ',數據庫名.dbo.表名) --遠程數據表導入到本地新表(本地新表不存在)
insert into 本地舊表 from openrowset( 'SQLOLEDB ', 'sql服務器名 '; '用戶名 '; '密碼 ',數據庫名.dbo.表名) --從遠程數據表導入到本地舊表(本地舊表已經存在)
insert openrowset( 'SQLOLEDB ', 'sql服務器名 '; '用戶名 '; '密碼 ',數據庫名.dbo.表名)
select *from 本地表 --把本地表數據導入到遠程數據庫表
update b set b.列A=a.列A
from openrowset( 'SQLOLEDB ', 'sql服務器名 '; '用戶名 '; '密碼 ',數據庫名.dbo.表名)as a
inner join 本地表 b on a.column1=b.column1 --更新本地表數據,設置本地表數據=遠程表數據
使用OLEDB:
select * from openrowset('SQLOLEDB','Server=(local);PWD=***;UID=sa;','select * from TB.dbo.school') as t
select * from openrowset('SQLOLEDB','Server=(local);PWD=***;UID=sa;',TB.dbo.school) as t
select * from openrowset('SQLOLEDB','Server=(local);Trusted_Connection=yes;',TB.dbo.school) as t
select * from openrowset('SQLOLEDB','(local)';'sa';'***','select * from TB.dbo.school') as t
select * from openrowset('SQLOLEDB','(local)';'sa';'***',TB.dbo.school) as t
select * from openrowset('SQLOLEDB','(local)';'sa';'***','select school.id as id1,people.id as id2 from TB.dbo.school inner join TB.dbo.people on school.id=people.id') as t
使用SQLNCLI:
select * from openrowset('SQLNCLI','(local)';'sa';'***','select * from TB.dbo.school') as t
select * from openrowset('SQLNCLI','Server=(local);Trusted_Connection=yes;','select * from 數據庫.dbo.表名') as t
select * from openrowset('SQLNCLI','Server=(local);UID=sa;PWD=***;','select * from 數據庫.dbo.表名') as t
select * from openrowset('SQLNCLI','Server=(local);UID=sa;PWD=***;',數據庫.dbo.表名) as t
select * from openrowset('SQLNCLI','Server=(local);UID=sa;PWD=***;DataBase=數據庫','select * from dbo.表名') as t
insert openrowset('SQLNCLI','Server=(local);Trusted_Connection=yes;','select name from 數據庫.dbo.表名 where id=1') values('ghjkl')/*要不要where都一樣,插入一行*/
update openrowset('SQLNCLI','Server=(local);Trusted_Connection=yes;','select name from 數據庫.dbo.表名 where id=1') set name='kkkkkk'
delete from openrowset('SQLNCLI','Server=(local);Trusted_Connection=yes;','select name from 數據庫.dbo.表名 where id=1')
3、使用opendatasource:
使用SQLNCLI:
select * from opendatasource('SQLNCLI','Server=(local);UID=sa;PWD=***;').數據庫.dbo.表名 as t
select * from opendatasource('SQLNCLI','Server=(local);UID=sa;PWD=***;DataBase=數據庫').數據庫.dbo.表名 as t
insert opendatasource('SQLNCLI','Server=(local);Trusted_Connection=yes;').TB.dbo.school(name) values('ghjkl')/*要不要where都一樣,插入一行*/
update opendatasource('SQLNCLI','Server=(local);Trusted_Connection=yes;').TB.dbo.school set name='kkkkkk'
delete from opendatasource('SQLNCLI','Server=(local);Trusted_Connection=yes;').TB.dbo.school where id=1
使用OLEDB:
select * from opendatasource('SQLOLEDB','Server=(local);Trusted_Connection=yes;').數據庫.dbo.表名 as t
select * from OpenDataSource('SQLOLEDB','Data Source=服務器;User ID=sa;Password=******').數據庫.dbo.表名 as T
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。