Home > Database > Mysql Tutorial > body text

SqlServer 跨服务器 DML

WBOY
Release: 2016-06-07 15:40:32
Original
1205 people have browsed it

一共有三个存储过程 sp_addlinkedserver 添加服务器链接 sp_linkedservers 查询服务器链接 sp_dropserver 删除服务器链接 示例: ------------------------------------- --首先建立链接服务器 EXEC sp_addlinkedserver 'instance1', '', 'MSDASQL', NULL, N

一共有三个存储过程

sp_addlinkedserver   添加服务器链接

sp_linkedservers       查询服务器链接
sp_dropserver           删除服务器链接

 

 示例:

 -------------------------------------

 --首先建立链接服务器
EXEC sp_addlinkedserver
   'instance1',
   '',
   'MSDASQL',
   NULL,
   NULL,
   'DRIVER={SQL Server};SERVER=192.168.1.100;UID=sa;PWD=123;'
GO

--查看链接服务器
EXEC sp_linkedservers

--删除链接服务器
EXEC sp_dropserver 'instance1'

--开始查询测试
select * from instance1.db1.dbo.table1
select * from 别名.数据库名.dbo.表名

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template