Sql compression and backing up in sql server 2005
Posted
by cagin
on Stack Overflow
See other posts from Stack Overflow
or by cagin
Published on 2010-05-13T12:20:40Z
Indexed on
2010/05/13
12:24 UTC
Read the original article
Hit count: 229
Hi there
I want to backup my database with compression. This is my code :
BACKUP DATABASE dbbbb
TO DISK = N'C:\\dbbb.bak'
WITH COMPRESSION
this running correctly in Sql Server 2008. But my server has Sql Server 2005 and COMPRESSION is not a recognized BACKUP option in 2005. How can i compress my backup in 2005
Thank you for your helps.
© Stack Overflow or respective owner