vote up 2 vote down star

I'm trying to backup a database in SQL Server 2008 and have the database compressed using the new compression feature. However, when I run the following code, I get a weird error message:

Backup Database <Database> To Disk 'C:\Backup' With Compression

I get this error message:

Backup Database With Compression is not supported on Standard Edition

Does this mean I have to upgrade to the full version or is there a way to enable compression in standard edition?

flag

You will have to run a script to zip or rar the file after the backup, just like the old days – Eduardo Molteni Jan 29 at 16:18

3 Answers

vote up 2 vote down check

Backup Compression is not supported on SQL 2008 Express, Workgroup, or Standard editions, only on Enterprise. There is no way to turn this on without upgrading your version to Enterprise.

Although you can't backup with compression on those versions, you can RESTORE from compressed backups.

See http://technet.microsoft.com/en-us/library/bb964719.aspx for more info.

link|flag
Damm... What a waste of money... Cheers. – GateKiller Jan 29 at 16:33
vote up 0 vote down

Might be helpful as well - to determine which edition of SQL Server you're running on, run the following SQL Query:

SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY ('productlevel'), SERVERPROPERTY ('edition')

See http://support.microsoft.com/kb/321185

link|flag
vote up 0 vote down

You need Enterprise Edition for that

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.