萬盛學電腦網

 萬盛學電腦網 >> 數據庫 >> mssql數據庫 >> sql訪問遠程數據庫

sql訪問遠程數據庫

   1、啟用Ad Hoc Distributed Queries

  在使用openrowset/opendatasource前搜先要啟用Ad Hoc Distributed Queries服務,因為這個服務不安全所以SqlServer默認是關閉的

  啟用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 聯機叢書中的 "外圍應用配置器".

  啟用Ad Hoc Distributed Queries的方法,執行下面的查詢語句就可以了:

  exec sp_configure 'show advanced options',1

  reconfigure

  exec sp_configure 'Ad Hoc Distributed Queries',1

  reconfigure

  使用完畢後,記得一定要要關閉它,因為這是一個安全隱患,切記執行下面的SQL語句

  exec sp_configure 'Ad Hoc Distributed Queries',0

  reconfigure

  exec sp_configure 'show advanced options',0

  reconfigure

  2、使用示例

  --創建鏈接服務器

  exec sp_addlinkedserver 'ITSV ', ' ', 'SQLOLEDB ', '遠程服務器名或ip地址 '

  exec sp_addlinkedsrvlogin 'ITSV ', 'false ',null, '用戶名 ', '密碼 '

  --查詢示例

  select * from ITSV.數據庫名。dbo.表名

  --導入示例

  select * into 表 from ITSV.數據庫名。dbo.表名

  --以後不再使用時刪除鏈接服務器

  exec sp_dropserver 'ITSV ', 'droplogins '

  --連接遠程/局域網數據(openrowset/openquery/opendatasource)

  --1、openrowset

  --查詢示例

  select * from openrowset( 'SQLOLEDB ', 'sql服務器名 '; '用戶名 '; '密碼 ',數據庫名。dbo.表名)

  --生成本地表

  select * 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

  --openquery用法需要創建一個連接

  --首先創建一個連接創建鏈接服務器

  exec sp_addlinkedserver 'ITSV ', ' ', 'SQLOLEDB ', '遠程服務器名或ip地址 '

  --查詢

  select *

  FROM openquery(ITSV, 'SELECT * FROM 數據庫。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

  --3、opendatasource/openrowset

  SELECT *

  FROM opendatasource( 'SQLOLEDB ', 'Data Source=ip/ServerName;User ID=登陸名;Password=密碼 ' )。test.dbo.roy_ta

  --把本地表導入遠程表

  insert opendatasource( 'SQLOLEDB ', 'Data Source=ip/ServerName;User ID=登陸名;Password=密碼 ')。數據庫。dbo.表名

  select * from 本地表

  3、自己寫的例子

  --openrowset使用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

  --openrowset使用SQLNCLI的一些例子(SQLNCLI在SqlServer2005以上才能使用)

  select * from openrowset('SQLNCLI','(local)';'sa';'***','select * from TB.dbo.school') as t

  select * from openrowset('SQLNCLI','Server=(local);Trusted_Connection=yes;','select * from TB.dbo.school') as t

  select * from openrowset('SQLNCLI','Server=(local);UID=sa;PWD=***;','select * from TB.dbo.school') as t

  select * from openrowset('SQLNCLI','Server=(local);UID=sa;PWD=***;',TB.dbo.school) as t

  select * from openrowset('SQLNCLI','Server=(local);UID=sa;PWD=***;DataBase=TB','select * from dbo.school') as t

  --openrowset其他使用

  insert openrowset('SQLNCLI','Server=(local);Trusted_Connection=yes;','select name from TB.dbo.school where id=1') values('ghjkl')/*要不要where都一樣,插入一行*/

  update openrowset('SQLNCLI','Server=(local);Trusted_Connection=yes;','select name from TB.dbo.school where id=1') set name='kkkkkk'

  delete from openrowset('SQLNCLI','Server=(local);Trusted_Connection=yes;','select name from TB.dbo.school where id=1')

copyright © 萬盛學電腦網 all rights reserved