Link to home
Start Free TrialLog in
Avatar of 25112
25112

asked on

compression option at database level instead of server level?

is it possible to set that only certain databases will use the 2008 compression automatic option during backup? if so, where can we see this setting (system views)?
Avatar of Scott Pletcher
Scott Pletcher
Flag of United States of America image

No.  You can set this at the server level, but then it applies to ALL dbs.

USE master;
EXEC sp_configure ‘backup compression default’, '1';
RECONFIGURE WITH OVERRIDE;

But that shouldn't be a big deal.  Why don't you want the backups for some dbs compressed?
Avatar of 25112
25112

ASKER

ok.. hmm..

one db is 400GB, other 120GB.. but both backups are almost same in size.. so I wondered if one alone could be compressed and other not .. I just wanted to check.
ASKER CERTIFIED SOLUTION
Avatar of Scott Pletcher
Scott Pletcher
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial