August 22, 2018 at 9:00 am
I have set up a link to a SQL2000 server from a SQL2016 server, details as follows:
EXEC master.dbo.sp_addlinkedserver @server = N'SQL2000', @srvproduct=N'', @provider=N'SQLNCLI10', @provstr=N'DRIVER={SQL Server};SERVER=SQL2000;'
/* For security reasons the linked server remote logins password is changed with ######## */
EXEC master.dbo.sp_addlinkedsrvlogin @rmtsrvname=N'SQL2000',@useself=N'True',@locallogin=NULL,@rmtuser=NULL,@rmtpassword=NULL
Login failed for user '(null)'. Reason: Not associated with a trusted SQL Server connection.
OLE DB provider "SQLNCLI10" for linked server "pebbles" returned message "Invalid connection string attribute".
Thanks in advance.
August 22, 2018 at 12:14 pm
I'd think here that the other server is having issues validating the domain account. It might have lost the connection with the domain controller it uses. Could be time is off or something else. Maybe an SPN error from the NT5 machine.
Viewing 2 posts - 1 through 1 (of 1 total)
You must be logged in to reply to this topic. Login to reply