USE master
exec sp_MSforeachdb '
use [?]
print ''?''
print cast(databasepropertyex(''?'', ''Updateability'') as varchar(200))
if databasepropertyex(''?'', ''Updateability'') = ''READ_WRITE ''
dbcc shrinkfile(2,1)
'
While I always configure transaction log backups for every database in non-simple recovery model, and to compliment it I also have monitorin...
No comments:
Post a Comment