In SQL Server 2000/2005, I want to get the names of all connected servers. How do I do this?
A:
In addition to sp_helpserver, you can get additional information from sys.servers.
SELECT * FROM sys.servers
Lieven
2009-04-09 09:05:58
A:
Hi Jegan,
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.
John Sansom
2009-04-09 10:47:11