Guest User

Untitled

a guest
Aug 8th, 2018
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. Linked Server Connection Error
  2. EXEC sp_addlinkedserver
  3. @server = N'serverdatabasevtidbserver',
  4. @provider = N'SQLOLEDB',
  5. @datasrc = N'VTI_FIS',
  6. @srvproduct=''
  7. EXEC sp_addlinkedsrvlogin
  8. @rmtsrvname=N'serverdatabasevtidbserver',
  9. @useself=N'False',
  10. @locallogin=NULL,
  11. @rmtuser=N'vtidbadmin',
  12. @rmtpassword='vallacar@654321'
  13.  
  14. OLE DB provider "SQLNCLI10" for linked server "serverdatabasevtidbserver" returned message "Login timeout expired".
  15. OLE DB provider "SQLNCLI10" for linked server "serverdatabasevtidbserver" returned message "A network-related or instance-specific error has occurred while establishing a connection to SQL Server. Server is not found or not accessible. Check if instance name is correct and if SQL Server is configured to allow remote connections. For more information see SQL Server Books Online.".
  16. Msg 53, Level 16, State 1, Line 0
  17. Named Pipes Provider: Could not open a connection to SQL Server [53].
  18.  
  19. exec master.dbo.sp_addlinkedserver @server = N'TEST', @srvproduct=N'SQL Server'
Add Comment
Please, Sign In to add comment