May 10, 2015 at 10:42 pm
Hi,
We are doing a review of a SQL 2008 server. Though we can identify what are the linked servers to the database.
However is there a sure shot way to identify, incoming DB links to the database server. I know the successful connections are easy to identify, but I wish to know all possible incoming DB links to server.
Will the DB logs help in identifying all attempted and successful DB link connections.
Thanks
May 11, 2015 at 7:26 am
from the connection side, you cannot tell if an ODBC connection is a linked server on the far end, or a application or anything like that.
If you've been smart and are using Registered Servers or Central Management Servers to administer all your servers, you should be able to simply query sys.servers on every SQL Server, and document your linked servers that way.
something like this to get you started:
SELECT *
FROM sys.servers
WHERE product = 'SQL Server'
AND server_id > 0;
Lowell
Viewing 2 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply
This website stores cookies on your computer.
These cookies are used to improve your website experience and provide more personalized services to you, both on this website and through other media.
To find out more about the cookies we use, see our Privacy Policy