<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: SQL SERVER &#8211; 2008 &#8211; Introduction to New Feature of Backup Compression</title>
	<atom:link href="http://blog.sqlauthority.com/2008/07/03/sql-server-2008-introduction-to-new-feature-of-backup-compression/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2008/07/03/sql-server-2008-introduction-to-new-feature-of-backup-compression/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Fri, 10 Feb 2012 02:12:04 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: SQL SERVER &#8211; Effect of Compressed Backup Setting at Server Level on Database Backup &#171; SQL Server Journey with SQLAuthority</title>
		<link>http://blog.sqlauthority.com/2008/07/03/sql-server-2008-introduction-to-new-feature-of-backup-compression/#comment-227101</link>
		<dc:creator><![CDATA[SQL SERVER &#8211; Effect of Compressed Backup Setting at Server Level on Database Backup &#171; SQL Server Journey with SQLAuthority]]></dc:creator>
		<pubDate>Wed, 28 Dec 2011 01:32:11 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=670#comment-227101</guid>
		<description><![CDATA[[...] Introduction to New Feature of Backup Compression [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Introduction to New Feature of Backup Compression [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rajkumar</title>
		<link>http://blog.sqlauthority.com/2008/07/03/sql-server-2008-introduction-to-new-feature-of-backup-compression/#comment-195220</link>
		<dc:creator><![CDATA[Rajkumar]]></dc:creator>
		<pubDate>Mon, 14 Nov 2011 12:50:45 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=670#comment-195220</guid>
		<description><![CDATA[Is It possible in SQL Server 2005?]]></description>
		<content:encoded><![CDATA[<p>Is It possible in SQL Server 2005?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER – What the Business Says Is Not What the Business Wants Journey to SQL Authority with Pinal Dave</title>
		<link>http://blog.sqlauthority.com/2008/07/03/sql-server-2008-introduction-to-new-feature-of-backup-compression/#comment-105169</link>
		<dc:creator><![CDATA[SQL SERVER – What the Business Says Is Not What the Business Wants Journey to SQL Authority with Pinal Dave]]></dc:creator>
		<pubDate>Tue, 14 Dec 2010 05:48:55 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=670#comment-105169</guid>
		<description><![CDATA[[...] The solution was compressed backup. I have written about this subject in detail few years before SQL SERVER – 2008 – Introduction to New Feature of Backup Compression. Compressed backup not only creates a small filesize but also increases the speed of the database [...]]]></description>
		<content:encoded><![CDATA[<p>[...] The solution was compressed backup. I have written about this subject in detail few years before SQL SERVER – 2008 – Introduction to New Feature of Backup Compression. Compressed backup not only creates a small filesize but also increases the speed of the database [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER – Fastest Way to Restore the Database Journey to SQL Authority with Pinal Dave</title>
		<link>http://blog.sqlauthority.com/2008/07/03/sql-server-2008-introduction-to-new-feature-of-backup-compression/#comment-75260</link>
		<dc:creator><![CDATA[SQL SERVER – Fastest Way to Restore the Database Journey to SQL Authority with Pinal Dave]]></dc:creator>
		<pubDate>Wed, 09 Jun 2010 01:31:39 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=670#comment-75260</guid>
		<description><![CDATA[[...] SQL SERVER – 2008 – Introduction to New Feature of Backup Compression [...]]]></description>
		<content:encoded><![CDATA[<p>[...] SQL SERVER – 2008 – Introduction to New Feature of Backup Compression [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tony</title>
		<link>http://blog.sqlauthority.com/2008/07/03/sql-server-2008-introduction-to-new-feature-of-backup-compression/#comment-74468</link>
		<dc:creator><![CDATA[Tony]]></dc:creator>
		<pubDate>Wed, 02 Jun 2010 20:11:51 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=670#comment-74468</guid>
		<description><![CDATA[This is a different subject.
I have some very large table which I will like select all the data in those tables to different tables by using select into. Also, I want to set the row count to 100000 at a time until all the rows a select into the new table with a loop. Here is the code I have and it is not working properly. Can you help?

SET ROWCOUNT 100000
DECLARE @RCOUNT     INT
        

SET @RCOUNT = 10000

WHILE @RCOUNT = 10000
BEGIN
BEGIN TRAN
INSERT Tbl_archive2
SELECT * FROM archive

SELECT @RCOUNT = @@rowcount
COMMIT TRAN
CHECKPOINT
END 
go]]></description>
		<content:encoded><![CDATA[<p>This is a different subject.<br />
I have some very large table which I will like select all the data in those tables to different tables by using select into. Also, I want to set the row count to 100000 at a time until all the rows a select into the new table with a loop. Here is the code I have and it is not working properly. Can you help?</p>
<p>SET ROWCOUNT 100000<br />
DECLARE @RCOUNT     INT</p>
<p>SET @RCOUNT = 10000</p>
<p>WHILE @RCOUNT = 10000<br />
BEGIN<br />
BEGIN TRAN<br />
INSERT Tbl_archive2<br />
SELECT * FROM archive</p>
<p>SELECT @RCOUNT = @@rowcount<br />
COMMIT TRAN<br />
CHECKPOINT<br />
END<br />
go</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Edwin</title>
		<link>http://blog.sqlauthority.com/2008/07/03/sql-server-2008-introduction-to-new-feature-of-backup-compression/#comment-67883</link>
		<dc:creator><![CDATA[Edwin]]></dc:creator>
		<pubDate>Thu, 29 Apr 2010 21:39:00 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=670#comment-67883</guid>
		<description><![CDATA[Dear Sir,

Is the  compress backup functionaly only support Microsoft SQL Server 2008 Enterprise edition?

I tried to executed  on my productin SQL Server 2008 Standard edition:

EXEC sp_configure &#039;backup compression default&#039;, &#039;1&#039;;
RECONFIGURE WITH OVERRIDE;
GO

It retured error of:
Msg 15123, Level 16, State 1, Procedure sp_configure, Line 51.  The configuration option &#039;backup compresion defulat&#039; does not exist, or it may be an advanced option.

Thanks,
Edwin]]></description>
		<content:encoded><![CDATA[<p>Dear Sir,</p>
<p>Is the  compress backup functionaly only support Microsoft SQL Server 2008 Enterprise edition?</p>
<p>I tried to executed  on my productin SQL Server 2008 Standard edition:</p>
<p>EXEC sp_configure &#8216;backup compression default&#8217;, &#8217;1&#8242;;<br />
RECONFIGURE WITH OVERRIDE;<br />
GO</p>
<p>It retured error of:<br />
Msg 15123, Level 16, State 1, Procedure sp_configure, Line 51.  The configuration option &#8216;backup compresion defulat&#8217; does not exist, or it may be an advanced option.</p>
<p>Thanks,<br />
Edwin</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pinal Dave</title>
		<link>http://blog.sqlauthority.com/2008/07/03/sql-server-2008-introduction-to-new-feature-of-backup-compression/#comment-59247</link>
		<dc:creator><![CDATA[Pinal Dave]]></dc:creator>
		<pubDate>Fri, 01 Jan 2010 10:56:13 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=670#comment-59247</guid>
		<description><![CDATA[Hello Zafar,

The ratio of backup depends of the data of database. Few factors like data type of data, consistency of data, whether data is already compressed or encripted decides the compression ratio. But normally comprassion is 40% to 80% of uncompressed backup size. 
You can check the ratio in the &quot;Backup_size&quot; and &quot;Compressed_backup_size&quot; columns of backupset table.
Backup as well as resotre are faster on comprassed backup. The only thing that increases is CPU utilization.

Regards,
Pinal Dave]]></description>
		<content:encoded><![CDATA[<p>Hello Zafar,</p>
<p>The ratio of backup depends of the data of database. Few factors like data type of data, consistency of data, whether data is already compressed or encripted decides the compression ratio. But normally comprassion is 40% to 80% of uncompressed backup size.<br />
You can check the ratio in the &#8220;Backup_size&#8221; and &#8220;Compressed_backup_size&#8221; columns of backupset table.<br />
Backup as well as resotre are faster on comprassed backup. The only thing that increases is CPU utilization.</p>
<p>Regards,<br />
Pinal Dave</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zafar</title>
		<link>http://blog.sqlauthority.com/2008/07/03/sql-server-2008-introduction-to-new-feature-of-backup-compression/#comment-59201</link>
		<dc:creator><![CDATA[Zafar]]></dc:creator>
		<pubDate>Thu, 31 Dec 2009 12:07:42 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=670#comment-59201</guid>
		<description><![CDATA[Whats the Ratio of Backup file with Compression and without Compression

Does it affect the restore of the DB ?

Thanks]]></description>
		<content:encoded><![CDATA[<p>Whats the Ratio of Backup file with Compression and without Compression</p>
<p>Does it affect the restore of the DB ?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Truc Thien Bui</title>
		<link>http://blog.sqlauthority.com/2008/07/03/sql-server-2008-introduction-to-new-feature-of-backup-compression/#comment-52519</link>
		<dc:creator><![CDATA[Truc Thien Bui]]></dc:creator>
		<pubDate>Thu, 28 May 2009 18:41:17 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=670#comment-52519</guid>
		<description><![CDATA[Hi Dave, 

This is very interesting feature. But currently i instaled SQL 2008 Express with Tool, in the server option i see the Compress Backup checkbox, then i checked in. But it does not affect.

Then i tried your SQL statement to enable this by command. But it does not works too.

Did this feature avaiable in the express version?]]></description>
		<content:encoded><![CDATA[<p>Hi Dave, </p>
<p>This is very interesting feature. But currently i instaled SQL 2008 Express with Tool, in the server option i see the Compress Backup checkbox, then i checked in. But it does not affect.</p>
<p>Then i tried your SQL statement to enable this by command. But it does not works too.</p>
<p>Did this feature avaiable in the express version?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER - 2008 - Introduction to Row Compression Journey to SQL Authority with Pinal Dave</title>
		<link>http://blog.sqlauthority.com/2008/07/03/sql-server-2008-introduction-to-new-feature-of-backup-compression/#comment-39810</link>
		<dc:creator><![CDATA[SQL SERVER - 2008 - Introduction to Row Compression Journey to SQL Authority with Pinal Dave]]></dc:creator>
		<pubDate>Sun, 06 Jul 2008 01:30:54 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=670#comment-39810</guid>
		<description><![CDATA[[...] 6, 2008 by pinaldave    In my previous article SQL SERVER - 2008 - Introduction to New Feature of Backup Compression I wrote about Row Compression and I have received many request to write in detail about Row [...]]]></description>
		<content:encoded><![CDATA[<p>[...] 6, 2008 by pinaldave    In my previous article SQL SERVER &#8211; 2008 &#8211; Introduction to New Feature of Backup Compression I wrote about Row Compression and I have received many request to write in detail about Row [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mudit</title>
		<link>http://blog.sqlauthority.com/2008/07/03/sql-server-2008-introduction-to-new-feature-of-backup-compression/#comment-39793</link>
		<dc:creator><![CDATA[Mudit]]></dc:creator>
		<pubDate>Sat, 05 Jul 2008 12:13:34 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=670#comment-39793</guid>
		<description><![CDATA[Dear Sir,
                        I have seen ur blog. It is realy fantastic. One thing i want to know, i m working in a software company as a Customer support Executive by 2 years. Now i want to improve my carier in Sql DBA. So can please give me some suggestion for this.

Thanks
Mudit]]></description>
		<content:encoded><![CDATA[<p>Dear Sir,<br />
                        I have seen ur blog. It is realy fantastic. One thing i want to know, i m working in a software company as a Customer support Executive by 2 years. Now i want to improve my carier in Sql DBA. So can please give me some suggestion for this.</p>
<p>Thanks<br />
Mudit</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Santiago Oyervides</title>
		<link>http://blog.sqlauthority.com/2008/07/03/sql-server-2008-introduction-to-new-feature-of-backup-compression/#comment-39768</link>
		<dc:creator><![CDATA[Santiago Oyervides]]></dc:creator>
		<pubDate>Fri, 04 Jul 2008 17:40:29 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=670#comment-39768</guid>
		<description><![CDATA[Hi, 
Could you make more tests with compression backups, I would like to know how much time does it take to backup a larger database (lets say 20 GB) with and without compression.

Also, it would be interesting to know how much CPU and memory is used, do you know where is the data being stored while the server is compressing the file (memory or disk)? 

Thanks.]]></description>
		<content:encoded><![CDATA[<p>Hi,<br />
Could you make more tests with compression backups, I would like to know how much time does it take to backup a larger database (lets say 20 GB) with and without compression.</p>
<p>Also, it would be interesting to know how much CPU and memory is used, do you know where is the data being stored while the server is compressing the file (memory or disk)? </p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

