EXEC sp_addlinkedserver
@server='destinationServerName',
@srvproduct='',
@provider='SQLNCLI',
@datasrc='tcp:destinationServerIpAddress,1433'
EXEC sp_addlinkedsrvlogin
@useself='FALSE',
@rmtsrvname=''destinationServerName',
@rmtuser='username',
@rmtpassword='password'
No comments:
Post a Comment
Comments will appear once they have been approved by the moderator