<?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 Row Compression</title>
	<atom:link href="http://blog.sqlauthority.com/2008/07/06/sql-server-2008-introduction-to-row-compression/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2008/07/06/sql-server-2008-introduction-to-row-compression/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Sat, 25 May 2013 01:31:40 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: SQL SERVER – Interview Questions and Answers – Frequently Asked Questions – Day 17 of 31 Journey to SQLAuthority</title>
		<link>http://blog.sqlauthority.com/2008/07/06/sql-server-2008-introduction-to-row-compression/#comment-148832</link>
		<dc:creator><![CDATA[SQL SERVER – Interview Questions and Answers – Frequently Asked Questions – Day 17 of 31 Journey to SQLAuthority]]></dc:creator>
		<pubDate>Sun, 17 Jul 2011 01:32:17 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=673#comment-148832</guid>
		<description><![CDATA[[...] Row compression changes the format of physical storage of data. It minimize the metadata (column information, length, offsets etc) associated with each record. Numeric data types and fixed-length strings are stored in variable-length storage format, just like Varchar. (Read more here) [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Row compression changes the format of physical storage of data. It minimize the metadata (column information, length, offsets etc) associated with each record. Numeric data types and fixed-length strings are stored in variable-length storage format, just like Varchar. (Read more here) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ananthesh kv</title>
		<link>http://blog.sqlauthority.com/2008/07/06/sql-server-2008-introduction-to-row-compression/#comment-128116</link>
		<dc:creator><![CDATA[Ananthesh kv]]></dc:creator>
		<pubDate>Sun, 10 Apr 2011 15:28:41 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=673#comment-128116</guid>
		<description><![CDATA[Hi

--display all the compressed tables

select a.name,b.data_compression_desc from sys.partitions b 
inner join sys.tables a on 
a.object_id = b.object_id where data_compression  0

or

select a.name,b.data_compression_desc from sys.partitions b 
inner join sys.tables a on 
a.object_id = b.object_id where data_compression_desc  &#039;NONE&#039;

please u can check.

Ananthesh]]></description>
		<content:encoded><![CDATA[<p>Hi</p>
<p>&#8211;display all the compressed tables</p>
<p>select a.name,b.data_compression_desc from sys.partitions b<br />
inner join sys.tables a on<br />
a.object_id = b.object_id where data_compression  0</p>
<p>or</p>
<p>select a.name,b.data_compression_desc from sys.partitions b<br />
inner join sys.tables a on<br />
a.object_id = b.object_id where data_compression_desc  &#8216;NONE&#8217;</p>
<p>please u can check.</p>
<p>Ananthesh</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Inna Shapiro</title>
		<link>http://blog.sqlauthority.com/2008/07/06/sql-server-2008-introduction-to-row-compression/#comment-127291</link>
		<dc:creator><![CDATA[Inna Shapiro]]></dc:creator>
		<pubDate>Thu, 07 Apr 2011 06:49:53 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=673#comment-127291</guid>
		<description><![CDATA[Please tell how can i get a list of compressed tables in the database ?

Thank  you in advance]]></description>
		<content:encoded><![CDATA[<p>Please tell how can i get a list of compressed tables in the database ?</p>
<p>Thank  you in advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ananthesh</title>
		<link>http://blog.sqlauthority.com/2008/07/06/sql-server-2008-introduction-to-row-compression/#comment-95054</link>
		<dc:creator><![CDATA[ananthesh]]></dc:creator>
		<pubDate>Fri, 22 Oct 2010 10:47:29 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=673#comment-95054</guid>
		<description><![CDATA[Dear Pinal

After the row or page compression I/O performance will increase but what about the cpu performance. How to decide on page or row compression which should not affect the cpu performance much. 
Please provide any article on deciding the row and page compression selection which show I/O and cpu performance statistics also.]]></description>
		<content:encoded><![CDATA[<p>Dear Pinal</p>
<p>After the row or page compression I/O performance will increase but what about the cpu performance. How to decide on page or row compression which should not affect the cpu performance much.<br />
Please provide any article on deciding the row and page compression selection which show I/O and cpu performance statistics also.</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/06/sql-server-2008-introduction-to-row-compression/#comment-75259</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:35 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=673#comment-75259</guid>
		<description><![CDATA[[...] SQL SERVER – 2008 – Introduction to Row Compression [...]]]></description>
		<content:encoded><![CDATA[<p>[...] SQL SERVER – 2008 – Introduction to Row Compression [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pinal Dave</title>
		<link>http://blog.sqlauthority.com/2008/07/06/sql-server-2008-introduction-to-row-compression/#comment-58584</link>
		<dc:creator><![CDATA[Pinal Dave]]></dc:creator>
		<pubDate>Sun, 13 Dec 2009 18:28:37 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=673#comment-58584</guid>
		<description><![CDATA[Hi Ashish,

The comprassion can be enabled to new tables/nex as well as to existing table/index. The syntax to enable the comprassion is follwoing.

CREATE TABLE TableName 
(
column defination,....
) 
WITH (DATA_COMPRESSION = ROW&#124;PAGE&#124;NONE) 

CREATE INDEX IndexName ON TableName (column,...) WITH (DATA_COMPRESSION = ROW&#124;PAGE&#124;NONE) 

ALTER TABLE TableName  REBUILD WITH (DATA_COMPRESSION=ROW&#124;PAGE&#124;NONE)

ALTER INDEX IndexName  REBUILD 
WITH (DATA_COMPRESSION=ROW&#124;PAGE&#124;NONE)

Please let us know what is the error you are getting.

Kind Regards,
Pinal Dave]]></description>
		<content:encoded><![CDATA[<p>Hi Ashish,</p>
<p>The comprassion can be enabled to new tables/nex as well as to existing table/index. The syntax to enable the comprassion is follwoing.</p>
<p>CREATE TABLE TableName<br />
(<br />
column defination,&#8230;.<br />
)<br />
WITH (DATA_COMPRESSION = ROW|PAGE|NONE) </p>
<p>CREATE INDEX IndexName ON TableName (column,&#8230;) WITH (DATA_COMPRESSION = ROW|PAGE|NONE) </p>
<p>ALTER TABLE TableName  REBUILD WITH (DATA_COMPRESSION=ROW|PAGE|NONE)</p>
<p>ALTER INDEX IndexName  REBUILD<br />
WITH (DATA_COMPRESSION=ROW|PAGE|NONE)</p>
<p>Please let us know what is the error you are getting.</p>
<p>Kind Regards,<br />
Pinal Dave</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ashish kumar arora</title>
		<link>http://blog.sqlauthority.com/2008/07/06/sql-server-2008-introduction-to-row-compression/#comment-58458</link>
		<dc:creator><![CDATA[Ashish kumar arora]]></dc:creator>
		<pubDate>Sat, 12 Dec 2009 10:26:37 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=673#comment-58458</guid>
		<description><![CDATA[please send me querry to execute an dapply row compression. I am not able to apply  above querry properly 
kindly send me proper syntex and method to compress it]]></description>
		<content:encoded><![CDATA[<p>please send me querry to execute an dapply row compression. I am not able to apply  above querry properly<br />
kindly send me proper syntex and method to compress it</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Uday Chowdary</title>
		<link>http://blog.sqlauthority.com/2008/07/06/sql-server-2008-introduction-to-row-compression/#comment-52862</link>
		<dc:creator><![CDATA[Uday Chowdary]]></dc:creator>
		<pubDate>Tue, 09 Jun 2009 07:04:48 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=673#comment-52862</guid>
		<description><![CDATA[Sir  
       It is really helpful for me. I have gone through all of sql server 2008 interview questions. The way you are explaining is really excellent. Please publish more questions.]]></description>
		<content:encoded><![CDATA[<p>Sir<br />
       It is really helpful for me. I have gone through all of sql server 2008 interview questions. The way you are explaining is really excellent. Please publish more questions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bhavani</title>
		<link>http://blog.sqlauthority.com/2008/07/06/sql-server-2008-introduction-to-row-compression/#comment-45451</link>
		<dc:creator><![CDATA[bhavani]]></dc:creator>
		<pubDate>Thu, 08 Jan 2009 05:42:05 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=673#comment-45451</guid>
		<description><![CDATA[i want  indetail about the Dirrential backup.

but i don&#039;t know how to use that.

i am daily  getting the full backup but it takes so much of time.


Please Consider this sir,]]></description>
		<content:encoded><![CDATA[<p>i want  indetail about the Dirrential backup.</p>
<p>but i don&#8217;t know how to use that.</p>
<p>i am daily  getting the full backup but it takes so much of time.</p>
<p>Please Consider this sir,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bhavani</title>
		<link>http://blog.sqlauthority.com/2008/07/06/sql-server-2008-introduction-to-row-compression/#comment-45450</link>
		<dc:creator><![CDATA[bhavani]]></dc:creator>
		<pubDate>Thu, 08 Jan 2009 05:38:09 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=673#comment-45450</guid>
		<description><![CDATA[Thanks Sir,

its very good.]]></description>
		<content:encoded><![CDATA[<p>Thanks Sir,</p>
<p>its very good.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER - 2008 - Interview Questions and Answers - Part 8 Journey to SQL Authority with Pinal Dave</title>
		<link>http://blog.sqlauthority.com/2008/07/06/sql-server-2008-introduction-to-row-compression/#comment-42966</link>
		<dc:creator><![CDATA[SQL SERVER - 2008 - Interview Questions and Answers - Part 8 Journey to SQL Authority with Pinal Dave]]></dc:creator>
		<pubDate>Fri, 19 Sep 2008 01:30:16 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=673#comment-42966</guid>
		<description><![CDATA[[...] Row compression changes the format of physical storage of data. It minimize the metadata (column information, length, offsets etc) associated with each record. Numeric data types and fixed length strings are stored in variable-length storage format, just like Varchar.  (Read More Here) [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Row compression changes the format of physical storage of data. It minimize the metadata (column information, length, offsets etc) associated with each record. Numeric data types and fixed length strings are stored in variable-length storage format, just like Varchar.  (Read More Here) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt</title>
		<link>http://blog.sqlauthority.com/2008/07/06/sql-server-2008-introduction-to-row-compression/#comment-40041</link>
		<dc:creator><![CDATA[Matt]]></dc:creator>
		<pubDate>Thu, 10 Jul 2008 18:57:53 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=673#comment-40041</guid>
		<description><![CDATA[Very interesting]]></description>
		<content:encoded><![CDATA[<p>Very interesting</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nicholas Paldino [.NET/C# MVP]</title>
		<link>http://blog.sqlauthority.com/2008/07/06/sql-server-2008-introduction-to-row-compression/#comment-39920</link>
		<dc:creator><![CDATA[Nicholas Paldino [.NET/C# MVP]]]></dc:creator>
		<pubDate>Tue, 08 Jul 2008 19:22:53 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=673#comment-39920</guid>
		<description><![CDATA[Is there a performance difference when using row compression?  Surely there are space savings, but you never get something for nothing.  I imagine there is a small computational cost that is attached to these storage savings.]]></description>
		<content:encoded><![CDATA[<p>Is there a performance difference when using row compression?  Surely there are space savings, but you never get something for nothing.  I imagine there is a small computational cost that is attached to these storage savings.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
