开发者

Linked server setup between SQL Server Express and SQL Server

开发者 https://www.devze.com 2022-12-09 06:18 出处:网络
Can you please explain how to setup a linked server between a SQL Server (A) and a SQL Server Express (B) scenario.

Can you please explain how to setup a linked server between a SQL Server (A) and a SQL Server Express (B) scenario.

Server A is SQL Server 2000, wher开发者_StackOverflow中文版eas Server B is SQL Server 2005 Express.

I have set these up in the past, but none where connected to a SQL Server Express version.

Thanks, Billy


You can use this sp to do it.

EXEC sp_addlinkedsrvlogin @rmtsrvname = 'MylinkedServer',
    @useself = 'FALSE',
    @locallogin = NULL,
    @rmtuser = 'me',
    @rmtpassword =  'myrmtpassword'


You could try using the sp_addlinkedserver stored procedure:

https://web.archive.org/web/1/http://blogs.techrepublic%2ecom%2ecom/datacenter/?p=133

Sql server Express supports linked servers

0

精彩评论

暂无评论...
验证码 换一张
取 消