--autoshrink.sql
-- list databases where autoshrink is ON
select *
from sys.databases
where is_auto_shrink_on != 0
-- make script to turn autoshrink OFF
SELECT 'ALTER DATABASE [' + name + '] SET AUTO_SHRINK OFF WITH NO_WAIT'
FROM sys.databases
WHERE database_id > 4
and is_auto_shrink_on != 0
No comments:
Post a Comment