Reputation:
In SQL Server 2000/2005, I want to get the names of all connected servers. How do I do this?
Upvotes: 2
Views: 323
Reputation: 41889
If you want to search your entire network in order to retrieve comprehensive information for all SQL Server Instances in your topology you can use the freely available Quest Discovery Wizard.
Quest Discovery Wizard for SQL Server
Upvotes: 0
Reputation: 58491
In addition to sp_helpserver, you can get additional information from sys.servers.
SELECT * FROM sys.servers
Upvotes: 1