Home > Database > Mysql Tutorial > 跨机器访问SQL SERVER数据库

跨机器访问SQL SERVER数据库

WBOY
Release: 2016-06-07 15:29:54
Original
1670 people have browsed it

跨机器访问 SQL SERVER 数据库 左直拳 如果在 SQL SERVER 上想访问另一台机器上的数据库,怎么办呢? 一、 运行以下代码: EXEC sp_addlinkedserver ' 别名 ',N'SQL Server' go exec sp_addlinkedsrvlogin ' 别名 ','false',NULL,' 目标数据库的帐号 ',' 目

跨机器访问SQL SERVER数据库

左直拳

 

如果在SQL SERVER上想访问另一台机器上的数据库,怎么办呢?

 

一、运行以下代码:

  EXEC   sp_addlinkedserver   '别名',N'SQL Server'  

go

  exec   sp_addlinkedsrvlogin  '别名','false',NULL,'目标数据库的帐号','目标数据库的密码'  

go

然后就可以

SELECT * FROM [别名].[数据库名].dbo.Table名了。

 

二、SQL SERVER2005 Manage Studio上还可以直接配置。

链接服务器,鼠标右键新建链接服务器,然后输入目标机器名,选适当的选项,添加登陆用户、密码就可以了。 
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