The "Central Management Servers" functionality of SQL Server Management Studio is an excellent way to apply the same code to every server. By "every server", I mean groups of servers that you define: you might have different servers in folders named "Production", "Development", "QA", "SQL Server 2000", etc. It just depends on your needs.
To get to the "Central Management Servers" pane in SSMS, simply select the "View, Registered Servers" menu item. After you've set up your servers, you can execute queries against every database in every server. The example below changes the width of a column in a table. Note that in this example, we look for only databases whose name begins with "DB100", we exclude read-only databases, and we specify the schema, table, and column name we want to modify. The code also checks that the length isn't already set to the value we want, to avoid unnecessary noise in the output. This code is compatible with SQL Server 2000 and later (hence the use of "syscolumns", etc.)
-- Comment.
set nocount on
declare @Sql nvarchar(4000)
set @Sql = 'use [?]
if exists (select *
from syscolumns sc
join sysobjects so
on sc.id = so.id
where ''?'' like ''DB100%''
and databaseproperty(''?'', ''IsReadOnly'') = 0
and user_name(so.uid) = ''dbo''
and object_name(sc.id) = ''Customer''
and sc.name = ''FirstName''
and sc.length != 120)
begin
select ''?'', sc.length
from syscolumns sc
join sysobjects so
on sc.id = so.id
where ''?'' like ''DB100%''
and databaseproperty(''?'', ''IsReadOnly'') = 0
and user_name(so.uid) = ''dbo''
and object_name(sc.id) = ''Customer''
and sc.name = ''FirstName''
and sc.length != 120
ALTER TABLE dbo.Customer ALTER COLUMN FirstName VARCHAR(120) NULL
end '
exec sp_msforeachdb @Sql
go
References
For more information on Central Management Servers:
Create a Central Management Server and Server Group
Registered Servers and Central Management Server Stores
Execute SQL Server query on multiple servers at the same time
1 comments:
Yes! Finally another post Larry! Please keep up the great work and your posts were sorely missed.
Post a Comment