<?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 SPARSE Columns</title>
	<atom:link href="http://blog.sqlauthority.com/2008/07/10/sql-server-2008-introduction-to-sparse-columns/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2008/07/10/sql-server-2008-introduction-to-sparse-columns/</link>
	<description>Notes of a SQL Server MVP and Database Administrator</description>
	<lastBuildDate>Sat, 21 Nov 2009 05:54:09 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: SQL SERVER - 2008 - Interview Questions and Answers - Part 6 Journey to SQL Authority with Pinal Dave</title>
		<link>http://blog.sqlauthority.com/2008/07/10/sql-server-2008-introduction-to-sparse-columns/#comment-47475</link>
		<dc:creator>SQL SERVER - 2008 - Interview Questions and Answers - Part 6 Journey to SQL Authority with Pinal Dave</dc:creator>
		<pubDate>Thu, 26 Feb 2009 12:05:13 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=678#comment-47475</guid>
		<description>[...] A sparse column is another tool used to reduce the amount of physical storage used in a database. They are the ordinary columns that have an optimized storage for null values. Sparse columns reduce the space requirements for null values at the cost of more overhead to retrieve nonnull values. (Read More Here) [...]</description>
		<content:encoded><![CDATA[<p>[...] A sparse column is another tool used to reduce the amount of physical storage used in a database. They are the ordinary columns that have an optimized storage for null values. Sparse columns reduce the space requirements for null values at the cost of more overhead to retrieve nonnull values. (Read More Here) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Qingsong</title>
		<link>http://blog.sqlauthority.com/2008/07/10/sql-server-2008-introduction-to-sparse-columns/#comment-41687</link>
		<dc:creator>Qingsong</dc:creator>
		<pubDate>Thu, 14 Aug 2008 19:02:01 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=678#comment-41687</guid>
		<description>The row compression and page compression do compress Null value. The compression ratio of sparse is usually less than the page compression.    However, Sparse has less CPU overhead than row compress and page compression because it does not compress the not null value, but only ignore the Null values.  I will post an example of comparing the storage size and the performance different for these two techniques.</description>
		<content:encoded><![CDATA[<p>The row compression and page compression do compress Null value. The compression ratio of sparse is usually less than the page compression.    However, Sparse has less CPU overhead than row compress and page compression because it does not compress the not null value, but only ignore the Null values.  I will post an example of comparing the storage size and the performance different for these two techniques.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dilip</title>
		<link>http://blog.sqlauthority.com/2008/07/10/sql-server-2008-introduction-to-sparse-columns/#comment-41566</link>
		<dc:creator>Dilip</dc:creator>
		<pubDate>Mon, 11 Aug 2008 08:39:46 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=678#comment-41566</guid>
		<description>This is very small introduction, plz give more details</description>
		<content:encoded><![CDATA[<p>This is very small introduction, plz give more details</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Heiko Hatzfeld</title>
		<link>http://blog.sqlauthority.com/2008/07/10/sql-server-2008-introduction-to-sparse-columns/#comment-40212</link>
		<dc:creator>Heiko Hatzfeld</dc:creator>
		<pubDate>Mon, 14 Jul 2008 12:41:47 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=678#comment-40212</guid>
		<description>Hi...

I am not quite sure if sparse columns are that great. I mean SQL2008 does come with an option to compress row data. 

How would this feature work combined with sparse Cols?

And I dont think the cost of diskspace is that high these days. You could save a few bytes here and there, but what would you really gain? You can have more columns per row, but I see 1024 and think do we realy need more in a realtional DB? I can see more in a cube, but then most columns would store redundant data,and row compression should be very efficient. 

You mention a performance hit? How big is it? That would be much more interesting.</description>
		<content:encoded><![CDATA[<p>Hi&#8230;</p>
<p>I am not quite sure if sparse columns are that great. I mean SQL2008 does come with an option to compress row data. </p>
<p>How would this feature work combined with sparse Cols?</p>
<p>And I dont think the cost of diskspace is that high these days. You could save a few bytes here and there, but what would you really gain? You can have more columns per row, but I see 1024 and think do we realy need more in a realtional DB? I can see more in a cube, but then most columns would store redundant data,and row compression should be very efficient. </p>
<p>You mention a performance hit? How big is it? That would be much more interesting.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER - 2008 - Introduction to SPARSE Columns - Part 2 Journey to SQL Authority with Pinal Dave</title>
		<link>http://blog.sqlauthority.com/2008/07/10/sql-server-2008-introduction-to-sparse-columns/#comment-40198</link>
		<dc:creator>SQL SERVER - 2008 - Introduction to SPARSE Columns - Part 2 Journey to SQL Authority with Pinal Dave</dc:creator>
		<pubDate>Mon, 14 Jul 2008 09:36:12 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=678#comment-40198</guid>
		<description>[...] 14, 2008 by pinaldave    Previously I wrote about SQL SERVER - 2008 - Introduction to SPARSE Columns. Let us understand the concept of SPARSE column in more detail. I suggest you read the first part [...]</description>
		<content:encoded><![CDATA[<p>[...] 14, 2008 by pinaldave    Previously I wrote about SQL SERVER &#8211; 2008 &#8211; Introduction to SPARSE Columns. Let us understand the concept of SPARSE column in more detail. I suggest you read the first part [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shital Shah</title>
		<link>http://blog.sqlauthority.com/2008/07/10/sql-server-2008-introduction-to-sparse-columns/#comment-40187</link>
		<dc:creator>Shital Shah</dc:creator>
		<pubDate>Mon, 14 Jul 2008 02:20:04 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=678#comment-40187</guid>
		<description>This is very shallow introduction. So what is the disadvantage?</description>
		<content:encoded><![CDATA[<p>This is very shallow introduction. So what is the disadvantage?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
