<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Clay Lenhart's Blog &#187; MSSQL Compressed Backup</title>
	<atom:link href="http://clay.lenharts.net/blog/tag/mssql-compressed-backup/feed/" rel="self" type="application/rss+xml" />
	<link>http://clay.lenharts.net/blog</link>
	<description>A blog on .Net and SQL Server</description>
	<lastBuildDate>Tue, 31 Oct 2017 10:34:08 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=4.2.2</generator>
	<item>
		<title>SQL Server Compressed Backup v1.2 Released</title>
		<link>http://clay.lenharts.net/blog/2009/11/23/sql-server-compressed-backup-v12-released/</link>
		<comments>http://clay.lenharts.net/blog/2009/11/23/sql-server-compressed-backup-v12-released/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 14:44:22 +0000</pubDate>
		<dc:creator><![CDATA[Clay Lenhart]]></dc:creator>
				<category><![CDATA[MSSQL Compressed Backup]]></category>
		<category><![CDATA[SQL Server Administration]]></category>

		<guid isPermaLink="false">http://clay.lenharts.net/blog/?p=126</guid>
		<description><![CDATA[I've just released version 1.2-20091123 of SQL Server Compressed Backup.  SQL Server Compressed Backup will back up a SQL Server database to a compressed file, using either gzip, zip and bzip2.  The new features are: <a href="http://clay.lenharts.net/blog/2009/11/23/sql-server-compressed-backup-v12-released/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve just released version 1.2-20091123 of <a href="https://sourceforge.net/projects/mssqlcompressed/">SQL Server Compressed Backup</a> which can be <a href="https://sourceforge.net/projects/mssqlcompressed/files/MSSQLCompressedBackup/1.2-20091123/MSSQLCompressedBackup-1.2-20091123.zip/download">downloaded here</a>.  </p>
<p>SQL Server Compressed Backup will back up SQL Server databases using either gzip, zip or bzip2 compression.</p>
<p>The new features are:<br />
<span id="more-126"></span></p>
<ul>
<li>Fixed the encoding problem by removing “\s”, “\p” and “\\” since they are commonly used in file paths and replacing them with “;;” to mean “;”. Looking at the command line options, it is only necessary to encode the semicolon, so “;;” is the only encoding the command line does.</li>
<li>Added a feature I’ve personally wanted: progress updates and an estimated time until completion. It is more verbose at the beginning (every few seconds), then slows down. After an hour of backing up, updates are only once every 24 minutes.</li>
<li>Worked on the BlockSize and BufferCount request. I’m not keen on implementing BlockSize. I’d like to hear someone explain how they take advantage of it. My understanding is that BlockSize is only for writing to devices (tapes and CD-ROMs — not files on a CD-ROM though), so it doesn’t seem appropriate for backing up to files. BufferCount and MaxTransferSize seem like reasonable options to request, so these are now available.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://clay.lenharts.net/blog/2009/11/23/sql-server-compressed-backup-v12-released/feed/</wfw:commentRss>
		<slash:comments>129</slash:comments>
		</item>
		<item>
		<title>MSSQL Compressed Backup 1.0 Released</title>
		<link>http://clay.lenharts.net/blog/2008/08/24/mssql-compressed-backup-10-released/</link>
		<comments>http://clay.lenharts.net/blog/2008/08/24/mssql-compressed-backup-10-released/#comments</comments>
		<pubDate>Sun, 24 Aug 2008 21:40:10 +0000</pubDate>
		<dc:creator><![CDATA[Clay Lenhart]]></dc:creator>
				<category><![CDATA[MSSQL Compressed Backup]]></category>
		<category><![CDATA[SQL Server Administration]]></category>

		<guid isPermaLink="false">http://clay.lenharts.net/blog/?p=39</guid>
		<description><![CDATA[I&#8217;ve just released version 1.0 of MSSQL Compressed Backup.  This is a command line utility that allows you to backup or restore your SQL Server 2005 databases to/from compressed files such as zip, bzip2, or gzip. http://mssqlcompressed.sourceforge.net/]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve just released version 1.0 of MSSQL Compressed Backup.  This is a command line utility that allows you to backup or restore your SQL Server 2005 databases to/from compressed files such as zip, bzip2, or gzip.</p>
<p><a href="http://mssqlcompressed.sourceforge.net/">http://mssqlcompressed.sourceforge.net/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://clay.lenharts.net/blog/2008/08/24/mssql-compressed-backup-10-released/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>SQL Server 2005 Compressed Backup</title>
		<link>http://clay.lenharts.net/blog/2008/06/14/sql-server-2005-compressed-backup/</link>
		<comments>http://clay.lenharts.net/blog/2008/06/14/sql-server-2005-compressed-backup/#comments</comments>
		<pubDate>Sat, 14 Jun 2008 12:21:22 +0000</pubDate>
		<dc:creator><![CDATA[Clay Lenhart]]></dc:creator>
				<category><![CDATA[MSSQL Compressed Backup]]></category>
		<category><![CDATA[SQL Server Administration]]></category>

		<guid isPermaLink="false">http://clay.lenharts.net/blog/?p=37</guid>
		<description><![CDATA[I've been working on a way to backup a SQL Server 2005 database to a compressed file recently, but without using temporary files, so I wrote MSSQL Compressed Backup. <a href="http://clay.lenharts.net/blog/2008/06/14/sql-server-2005-compressed-backup/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve been working on a way to backup SQL Server 2005 databases to a compressed file recently, but without using temporary files.  I recently found that it is actually pretty easy.  SQL Server has an <a href="http://www.microsoft.com/downloads/details.aspx?familyid=416f8a51-65a3-4e8e-a4c8-adfe15e850fc&amp;displaylang=en">interface for creating a virtual backup device</a> so that the data is pumped to your application, not a real device.  Once the application has the data, it can compress it, encrypt it, or do whatever it likes.  Maybe DBAs would like to save the data to an FTP server.  There are so many options.</p>
<p>The application I wrote is called <a href="http://mssqlcompressed.sourceforge.net/">MSQL Compressed Backup</a> which you can find on Sourceforge.  It is currently in beta, and I don&#8217;t plan to release a 1.0 version for awhile until it has had some testing by other people.  If you are interested in it, please download a copy and give it a try.</p>
<p>Documentation is currently lacking, but here are a couple of examples.  I think they are self explanatory.</p>
<ul>
<li>msbp.exe backup [model] gzip file:///c:\model.bak.gz</li>
<li>msbp.exe restore file:///c:\model.bak.gz gzip [model]<br />
Here, gzip knows to uncompress since it is in &#8220;restore&#8221; mode.</li>
<li>msbp.exe backup [model] bzip2(level=5) file:///c:\model.bak.bz2<br />
Each plugin in the pipeline can have parameters.</li>
<li>msbp.exe backup [model] rate(ratemb=5.0) bzip2(level=5) file:///c:\model.bak.bz2<br />
You can have any number of plugins in the pipeline.  The rate plugin limits the impact of a backup on your server by restricting the speed of the backup (or restore).</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://clay.lenharts.net/blog/2008/06/14/sql-server-2005-compressed-backup/feed/</wfw:commentRss>
		<slash:comments>91</slash:comments>
		</item>
	</channel>
</rss>
