Compressed backups in SQL Server 2005 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T22:44:36Z http://stackoverflow.com/feeds/question/295419 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/295419/compressed-backups-in-sql-server-2005 0 Compressed backups in SQL Server 2005 Vinko Vrsalovic 2008-11-17T11:57:55Z 2009-11-24T01:05:08Z <p>What is the best free way to get your maintenance plan-generated backups compressed?</p> <p>I know there are non-free tools that will compress the backups, but I'm not interested in them.</p> <p>Options:</p> <ol> <li>Have a T-SQL task after the backups that will run a script through xp_cmdshell that compresses every non compressed backup.</li> <li>???</li> </ol> <p>Any other ideas welcome, I'd like to avoid writing a script/program.</p> http://stackoverflow.com/questions/295419/compressed-backups-in-sql-server-2005/295435#295435 0 Answer by Valerion for Compressed backups in SQL Server 2005 Valerion 2008-11-17T12:05:05Z 2008-11-17T12:05:05Z <p>I'd schedule a task after the backup to do it as you already suggest. Also, I believe SQL2008 (at least some flavours) will do compressed backups.</p> <p>However, if you are at the point where you NEED to compress backups for disk-space reasons, I'd suggest looking at more storage. Unless you are trying to keep the sizes down for a tape transfer, of course.</p> http://stackoverflow.com/questions/295419/compressed-backups-in-sql-server-2005/295444#295444 1 Answer by Berzerk for Compressed backups in SQL Server 2005 Berzerk 2008-11-17T12:10:27Z 2008-11-17T12:10:27Z <p>C:\Program Files\Support Tools>compress /?</p> <p>is a command line tool for zipping files.</p> <p>I don't know how to compress only uncompressed files, but you may already know the file names in your T-SQL task?</p> <p>If you do, you can pass file names as parameters to your xp_cmdshell call.</p> http://stackoverflow.com/questions/295419/compressed-backups-in-sql-server-2005/297013#297013 1 Answer by Marcus Erickson for Compressed backups in SQL Server 2005 Marcus Erickson 2008-11-17T21:30:36Z 2008-11-17T21:30:36Z <p>Idera which ships a non-free backup solution SQLsafe for compressing and encrypting also has a free version of their tool that will do compression called SQLsafe Free Edition. It is meant to get people using the basic features so that they upgrade later when they need more. But the free tool may be perfect for you:</p> <p><a href="http://www.idera.com/Products/SQLsafefree/Default.aspx" rel="nofollow">http://www.idera.com/Products/SQLsafefree/Default.aspx</a></p> http://stackoverflow.com/questions/295419/compressed-backups-in-sql-server-2005/312634#312634 1 Answer by mika for Compressed backups in SQL Server 2005 mika 2008-11-23T15:41:56Z 2008-11-23T15:53:02Z <p>You need three components. A <em>scheduler</em> should launch <em>backup</em>, <em>compression</em> and perhaps other steps like copying the end result to a file server. You can choose your tool for each task but I can recommend our <a href="http://www.educ.umu.se/~cobian/cobianbackup.htm" rel="nofollow">Cobian Backup</a> based setup that has served well for a couple of years.</p> <ul> <li><p>Scheduler: Cobian Backup</p></li> <li><p>Backup: <a href="http://www.codeplex.com/ExpressMaint" rel="nofollow">ExpressMaint</a> (for MSSQL Express) </p></li> <li><p>Compression: Cobian Backup</p></li> </ul> <p>Basically, you set up backup scheduling with Cobian, run ExpressMaint or other MSSQL backup tool as a Cobian "before event". Cobian then zips the result and saves it to a destination.</p> <p>Compressing SQL Server backup files is necessary if you intend to move them in a network and/or centralize their storage.</p> http://stackoverflow.com/questions/295419/compressed-backups-in-sql-server-2005/1784533#1784533 2 Answer by Clay Lenhart for Compressed backups in SQL Server 2005 Clay Lenhart 2009-11-23T17:04:33Z 2009-11-24T01:05:08Z <p>I'm the author of an open source project (GPL v3) that might be what you are looking for (It's not maintenance-plan based though). It is a command line tool (to schedule in Scheduled Tasks in Windows) and backs up to gzip, zip (specifically zip64 due to the 4GB limitation with regular zip files), or bzip2 files. You can use the tool to restore directly from the compressed files, or you can uncompress the compressed files (which are standard *.bak files) and use SQL Server to restore.</p> <p>It's called SQL Server Compressed Backup, found here: <a href="http://sourceforge.net/projects/mssqlcompressed/" rel="nofollow">http://sourceforge.net/projects/mssqlcompressed/</a></p> <p>A sample command would be:</p> <pre><code>msbp.exe backup "db(database=model)" "zip64" "local(path=c:\model.full.bak.zip)" </code></pre>