October 24, 2012 at 8:26 am
Hello,
i have tried and tested port number changes with luck now luckily going to production linked server is not working to a server where it is default port of 1433.
how to achieve succesful port change with linked server connections.
thanks in advance.
Regards
Durai Nagarajan
October 24, 2012 at 8:47 am
well there is two pieces of the puzzle.
IF the linked server is using dynamic ports, you need to have the SQl Browser Service running on the linked server. If it's not
running, or you know you've already configured that other instance to listen on a specific port, you just make sure to specify the port when creating the linked server:
EXEC master.dbo.sp_addlinkedserver
@server = N'My2012LinkedServer',
@provider=N'SQLNCLI',
@srvproduct = N'',
@datasrc=N'DEV223\SQL2012,14330'
--Or
EXEC master.dbo.sp_addlinkedserver
@server = N'My2012LinkedServer',
@provider=N'SQLNCLI',
@srvproduct = N'',
@datasrc='192.168.0.55,14330'
you can use the SQL Configuration manager to change from dynamic to static ports:
Lowell
October 24, 2012 at 8:55 am
thanks hope this will work from the server where i have changed the port number
i'll try and getback, thanks again.
Regards
Durai Nagarajan
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply