![]() |
|

SQL Server backup compression with network fault tolerance and zero impact encryption
|
|
By: Jugal Shah | Read Comments (2) | Related Tips: 1 | 2 | 3 | 4 | More > Central Management Servers |
I have SQL Server Central Management Servers setup in my environment. How can I get a list of the registered servers and their associated properties? Are there any queries I can issue? Check out this tip to learn more.
Sometimes we came across a situation where we need to query the SQL Server Central Management Servers to get the list of the registered servers and groups. You can query the two MSDB system tables below to get a list of the registered servers and their groups.
We can use these system tables for the following:
USE msdb; GO /* Query to list out Server Groups and Types */ SELECT * FROM msdb.dbo.sysmanagement_shared_server_groups_internal; GO

USE msdb ; GO /* Query to list out the registered servers */ SELECT * FROM msdb.dbo.sysmanagement_shared_registered_servers_intrnal; GO

/* Servers and groups */
SELECT DISTINCT groups.name AS 'Server Group Name'
,svr.server_name AS 'Server Name'
FROM msdb.dbo.sysmanagement_shared_server_groups_internal groups
INNER JOIN msdb.dbo.sysmanagement_shared_registered_servers_internal svr
ON groups.server_group_id = svr.server_group_id;
GO

| Monday, May 23, 2011 - 1:32:07 PM - Abhi | Read The Tip |
|
Hi Jugal, Thanks for this tip, but its working only in SQL 2008. what about 2005 sql server?
Thanks in advance, Abhi |
|
| Tuesday, May 24, 2011 - 1:38:51 AM - Jugal | Read The Tip |
|
Hi Abhi, CMS is SQL Server 2008 feature. You can register the lower SQL Server version in CMS, but you must need atleast 1 SQL Server 2008 instance. That's why you are not able to in lower versions. You can query it in SQL Server 2008 only. Thanks, Jugal SHah
|
|
|
privacy | disclaimer | copyright | advertise | about authors | contribute | feedback | giveaways | user groups Some names and products listed are the registered trademarks of their respective owners. Edgewood Solutions LLC | MSSharePointTips.com | MSSQLTips.com |