SQL 分布式查詢 插入遞增列示例

2022-01-24 01:08:25 字數 871 閱讀 3312

**truncate

table

testtable

exec

sp_configure 

'show advanced options', 

1; --開啟高階配置

reconfigure

exec

sp_configure 

'ad hoc distributed queries', 

1;--開啟分布式查詢

reconfigure

setidentity_insert

testtable 

on--

設定 某錶允許插入遞增量

insert

into

testtable(id,date,info )

select

a.id,a.date,a.info

from

openrowset('

sqloledb',

'v';

'sa';

'123456',

'select * from testdatabase.dbo.testtable') 

asasetidentity_insert

testtable 

off--

設定 不某錶允許插入遞增量

exec

sp_configure 

'ad hoc distributed queries', 

0;--關閉分布式查詢

reconfigure

exec

sp_configure 

'show advanced options', 

0;--關閉高階配置

reconfigure

sql 分布式查詢

遠端鏈結伺服器機器名 roy 例項名 roy sql2005de 登陸名 sa 密碼 test2005 建立鏈結伺服器 exec master.dbo.sp addlinkedserver server n roy lnk srvproduct n provider n sqloledb datas...

SQL分布式查詢

測試檔案內容 e module test.xls job desc job id max lvl min lvl 記錄一 1.0 11.0 11.0 記錄二 2.0 22.0 22.0 記錄三 3.0 33.0 33.0 記錄四 4.0 44.0 44.0 e module temp.mdb檔案jo...

sql分布式查詢

建立鏈結伺服器 exec sp addlinkedserver itsv sqloledb 192.168.0.88 exec sp addlinkedsrvlogin itsv false null user emenudata2fortesting sa exec sp addlinkedser...