Reputation: 23541
I've created a SQLServer Maintenance Task with SMSS. In the "Back Up Database Task", there's an option to compress the database.
One of the is to "Use the default server setting".
On some servers the default setting is to compress the backup, some are not. Where do I get the value of the default compression setting?
Upvotes: 2
Views: 131
Reputation: 56745
Pinal Dave has excellent tutorials on this here:
From SSMS you can set it by:
You can also set it from TSQL with the following commands:
USE MASTER;
GO
EXEC sp_configure 'backup compression default', 1;
RECONFIGURE WITH OVERRIDE;
GO
Upvotes: 3