Question : SQL Server 2000, 2005 and 2008 + shrink

HI,

We have all three kind of SQL Server instances (2000.2005.2008). I would like to make some automatic query which shrink these databases once a week or something like that. Can someone help me to do this kind of script.

And second thing that Im finding. I have SQL Server 2005 intance where databases are still in SQL 2000 compatibility mode. There is so much databases that I cant change them manually. So how I could change the mode by query?

Answer : SQL Server 2000, 2005 and 2008 + shrink

Nope I forgot the brackets. Try this:

DECLARE database_cursor CURSOR FOR SELECT name FROM master..sysdatabases
DECLARE @database_name sysname

OPEN database_cursor
FETCH NEXT FROM database_cursor INTO @database_name
WHILE @@FETCH_STATUS=0
BEGIN
  PRINT @database_name
  DBCC SHRINKDATABASE (@database_name)
  FETCH NEXT FROM database_cursor INTO @database_name
END

CLOSE database_cursor
DEALLOCATE database_cursor
Random Solutions  
 
programming4us programming4us