sqlserver的openquery配置

admin2024-08-16  14

1.命令Demo

---openquery

--开启Ad Hoc Distributed Queries组件,在sql查询编辑器中执行如下语句

exec sp_configure 'show advanced options',1

reconfigure

exec sp_configure 'Ad Hoc Distributed Queries',1

reconfigure

--关闭Ad Hoc Distributed Queries组件,在sql查询编辑器中执行如下语句

exec sp_configure 'Ad Hoc Distributed Queries',0

reconfigure

exec sp_configure 'show advanced options',0

reconfigure

--这句是映射一个远程数据库

exec sp_addlinkedserver   'LHGZPT', '', 'SQLOLEDB', '202.96.25.49,1433'

--这句是登录远程数据库

exec sp_addlinkedsrvlogin 'LHGZPT','false ',null, 'sino', '1qaz!QAZ'

--将另一个库中查询到的数据保存在本地库中

insert into lh_applyinfo(id,applyid,applytype,applystatus)

select * from openquery(LHGZPT,'SELECT id,applyid,applytype,applystatus FROM lhgzpt_nei.dbo.lh_applyinfo with(nolock) where create_date between ''2018-07-01 00:00:01'' and ''2018-10-31 23:00:01'' ')

--以后不再使用时删除链接服务器

exec sp_dropserver  'ITSV ', 'droplogins '

2.解决自增主键问题

--允许将显式值插入表的标识列中 ON-允许 OFF-不允许

set identity_insert OrderList ON--打开

insert into OrderList(id,ordername,createdate)

values(4520,'set',getdate())

set identity_insert OrderList OFF--关闭

3.如果后期有数据库修改了密码,可通过页面修改远程链接

sqlserver的openquery配置,第1张

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明原文出处。如若内容造成侵权/违法违规/事实不符,请联系SD编程学习网:675289112@qq.com进行投诉反馈,一经查实,立即删除!