<?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; Fundamentals of Columnstore Index</title>
	<atom:link href="http://blog.sqlauthority.com/2011/10/29/sql-server-fundamentals-of-columnstore-index/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2011/10/29/sql-server-fundamentals-of-columnstore-index/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Fri, 17 May 2013 15:26:57 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Sabyasachi</title>
		<link>http://blog.sqlauthority.com/2011/10/29/sql-server-fundamentals-of-columnstore-index/#comment-471218</link>
		<dc:creator><![CDATA[Sabyasachi]]></dc:creator>
		<pubDate>Wed, 08 May 2013 07:11:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15283#comment-471218</guid>
		<description><![CDATA[Hi Pinal Sir,
However, columnstore indexes do have some restrictions. The most limiting
restriction at present is that they cannot be updated, and as such any updates
applied to a table will fail. If you do try to perform an insert, update or delete,
you will see the following error message, even if the query affects zero rows:
INSERT statement failed because data cannot be updated in a table with
a columnstore index.
However, the remainder of the error message comes to our rescue:
Consider disabling the columnstore index before issuing the INSERT
statement, then re-building the columnstore index after INSERT is
complete. 
Is it true?]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal Sir,<br />
However, columnstore indexes do have some restrictions. The most limiting<br />
restriction at present is that they cannot be updated, and as such any updates<br />
applied to a table will fail. If you do try to perform an insert, update or delete,<br />
you will see the following error message, even if the query affects zero rows:<br />
INSERT statement failed because data cannot be updated in a table with<br />
a columnstore index.<br />
However, the remainder of the error message comes to our rescue:<br />
Consider disabling the columnstore index before issuing the INSERT<br />
statement, then re-building the columnstore index after INSERT is<br />
complete.<br />
Is it true?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shivanee</title>
		<link>http://blog.sqlauthority.com/2011/10/29/sql-server-fundamentals-of-columnstore-index/#comment-411085</link>
		<dc:creator><![CDATA[Shivanee]]></dc:creator>
		<pubDate>Tue, 22 Jan 2013 06:54:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15283#comment-411085</guid>
		<description><![CDATA[Hello, I need help in understanding the concept..my ques is
How does SQL Server redefine a row when compression occurs for a particular column ?
Difference between creating column store index only on some of the columns and all the columns of a fact table ?]]></description>
		<content:encoded><![CDATA[<p>Hello, I need help in understanding the concept..my ques is<br />
How does SQL Server redefine a row when compression occurs for a particular column ?<br />
Difference between creating column store index only on some of the columns and all the columns of a fact table ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frank</title>
		<link>http://blog.sqlauthority.com/2011/10/29/sql-server-fundamentals-of-columnstore-index/#comment-388150</link>
		<dc:creator><![CDATA[Frank]]></dc:creator>
		<pubDate>Thu, 06 Dec 2012 14:31:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15283#comment-388150</guid>
		<description><![CDATA[Hello Mr. Dave,
I took a script from web to demonstrate column store index. It creates a table and inserts test data.


use adventureworks2012;
go
drop table sales2;
create table sales2 (
	[id] int not null identity (1,1),
	[date] date not null,
	itemid smallint not null,
	price money not null,
	quantity numeric(18,4) not null)
	;
go
create unique clustered index cdx_sales2_date_id on sales2 ([date], [id]);
go
set nocount on;
go
--insert sales2
declare @i int = 0;
declare @date datetime2;
begin transaction;
while @i 0
		order by t.name, au.type
go
set statistics io on;
go
select [date], sum(price*quantity) from sales2 with (index(cs_sales2_price)) where date = &#039;20110713&#039; group by [date]
go
set statistics io off;
go

ok so far... then I checked allocated Pages: 


select t.name, au.* from sys.system_internals_allocation_units au
	join sys.system_internals_partitions p
	join sys.tables t on p.object_id = t.object_id
		on p.partition_id = au.container_id
	where (
		p.object_id = object_id(&#039;sales2&#039;))
		and total_pages &gt;0
		order by t.name, au.type
go

result: 1002 pages for the columnstore index

Then I executed

set statistics io on;
go
select [date], sum(price*quantity) from sales2 with (index(cs_sales2_price)) where date = &#039;20110713&#039; group by [date]
go
set statistics io off;
go

Result:
Table &#039;sales2&#039;. Scan count 1, logical reads 1355, physical reads 0, read-ahead reads 4706, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0. 

WHAT?? 1355 logical reads? Why are there 353 reads more than allocated pages?]]></description>
		<content:encoded><![CDATA[<p>Hello Mr. Dave,<br />
I took a script from web to demonstrate column store index. It creates a table and inserts test data.</p>
<p>use adventureworks2012;<br />
go<br />
drop table sales2;<br />
create table sales2 (<br />
	[id] int not null identity (1,1),<br />
	[date] date not null,<br />
	itemid smallint not null,<br />
	price money not null,<br />
	quantity numeric(18,4) not null)<br />
	;<br />
go<br />
create unique clustered index cdx_sales2_date_id on sales2 ([date], [id]);<br />
go<br />
set nocount on;<br />
go<br />
&#8211;insert sales2<br />
declare @i int = 0;<br />
declare @date datetime2;<br />
begin transaction;<br />
while @i 0<br />
		order by t.name, au.type<br />
go<br />
set statistics io on;<br />
go<br />
select [date], sum(price*quantity) from sales2 with (index(cs_sales2_price)) where date = &#8217;20110713&#8242; group by [date]<br />
go<br />
set statistics io off;<br />
go</p>
<p>ok so far&#8230; then I checked allocated Pages: </p>
<p>select t.name, au.* from sys.system_internals_allocation_units au<br />
	join sys.system_internals_partitions p<br />
	join sys.tables t on p.object_id = t.object_id<br />
		on p.partition_id = au.container_id<br />
	where (<br />
		p.object_id = object_id(&#8216;sales2&#8242;))<br />
		and total_pages &gt;0<br />
		order by t.name, au.type<br />
go</p>
<p>result: 1002 pages for the columnstore index</p>
<p>Then I executed</p>
<p>set statistics io on;<br />
go<br />
select [date], sum(price*quantity) from sales2 with (index(cs_sales2_price)) where date = &#8217;20110713&#8242; group by [date]<br />
go<br />
set statistics io off;<br />
go</p>
<p>Result:<br />
Table &#8216;sales2&#8242;. Scan count 1, logical reads 1355, physical reads 0, read-ahead reads 4706, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0. </p>
<p>WHAT?? 1355 logical reads? Why are there 353 reads more than allocated pages?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Niraj Shah</title>
		<link>http://blog.sqlauthority.com/2011/10/29/sql-server-fundamentals-of-columnstore-index/#comment-382449</link>
		<dc:creator><![CDATA[Niraj Shah]]></dc:creator>
		<pubDate>Wed, 28 Nov 2012 09:15:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15283#comment-382449</guid>
		<description><![CDATA[I am using SQL Express 2012, but it is now allowing me to create column store index and fired a messgage :

CREATE INDEX statement failed because a columnstore index cannot be created in this edition of SQL server.

Pl. help me.]]></description>
		<content:encoded><![CDATA[<p>I am using SQL Express 2012, but it is now allowing me to create column store index and fired a messgage :</p>
<p>CREATE INDEX statement failed because a columnstore index cannot be created in this edition of SQL server.</p>
<p>Pl. help me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER &#8211; Beginning New Weekly Series &#8211; Memory Lane &#8211; #002 &#171; SQL Server Journey with SQL Authority</title>
		<link>http://blog.sqlauthority.com/2011/10/29/sql-server-fundamentals-of-columnstore-index/#comment-371926</link>
		<dc:creator><![CDATA[SQL SERVER &#8211; Beginning New Weekly Series &#8211; Memory Lane &#8211; #002 &#171; SQL Server Journey with SQL Authority]]></dc:creator>
		<pubDate>Sat, 10 Nov 2012 01:31:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15283#comment-371926</guid>
		<description><![CDATA[[...] Fundamentals of Columnstore Index Columnstore index is introduced in SQL Server 2012 and have been a very popular subject. It increases the speed of the server dramatically as well can be an extremely useful feature with Datawharehousing. However updating the columnstore index is not as simple as a simple UPDATE statement. Read in a detailed blog post about how Update works with Columnstore Index. Additionally, you can watch a Quick Video on this subject. [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Fundamentals of Columnstore Index Columnstore index is introduced in SQL Server 2012 and have been a very popular subject. It increases the speed of the server dramatically as well can be an extremely useful feature with Datawharehousing. However updating the columnstore index is not as simple as a simple UPDATE statement. Read in a detailed blog post about how Update works with Columnstore Index. Additionally, you can watch a Quick Video on this subject. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nrevanthRevanth</title>
		<link>http://blog.sqlauthority.com/2011/10/29/sql-server-fundamentals-of-columnstore-index/#comment-363044</link>
		<dc:creator><![CDATA[nrevanthRevanth]]></dc:creator>
		<pubDate>Mon, 22 Oct 2012 16:48:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15283#comment-363044</guid>
		<description><![CDATA[Thanks Pinal,]]></description>
		<content:encoded><![CDATA[<p>Thanks Pinal,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phil Cox</title>
		<link>http://blog.sqlauthority.com/2011/10/29/sql-server-fundamentals-of-columnstore-index/#comment-343677</link>
		<dc:creator><![CDATA[Phil Cox]]></dc:creator>
		<pubDate>Thu, 13 Sep 2012 13:28:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15283#comment-343677</guid>
		<description><![CDATA[Hi Dave,

Absolute gem of an article and a very significant feature for SQL Server in the Big Data world!  Thanks]]></description>
		<content:encoded><![CDATA[<p>Hi Dave,</p>
<p>Absolute gem of an article and a very significant feature for SQL Server in the Big Data world!  Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sat</title>
		<link>http://blog.sqlauthority.com/2011/10/29/sql-server-fundamentals-of-columnstore-index/#comment-318109</link>
		<dc:creator><![CDATA[Sat]]></dc:creator>
		<pubDate>Mon, 23 Jul 2012 18:15:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15283#comment-318109</guid>
		<description><![CDATA[Hi,
I found some weird problem today with column store index table. 

Not able to truncate data from a table with column store index even after disabling the index. We can delete the data but not truncate. If you ever aware of this, can you please suggest any work around on it other than dropping and recreating column-store index.]]></description>
		<content:encoded><![CDATA[<p>Hi,<br />
I found some weird problem today with column store index table. </p>
<p>Not able to truncate data from a table with column store index even after disabling the index. We can delete the data but not truncate. If you ever aware of this, can you please suggest any work around on it other than dropping and recreating column-store index.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER &#8211; ColumnStore Index &#8211; Batch Mode vs Row Mode &#171; SQL Server Journey with SQL Authority</title>
		<link>http://blog.sqlauthority.com/2011/10/29/sql-server-fundamentals-of-columnstore-index/#comment-303739</link>
		<dc:creator><![CDATA[SQL SERVER &#8211; ColumnStore Index &#8211; Batch Mode vs Row Mode &#171; SQL Server Journey with SQL Authority]]></dc:creator>
		<pubDate>Thu, 21 Jun 2012 01:32:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15283#comment-303739</guid>
		<description><![CDATA[[...] communicate the same positively. Well, this is what I did, I quickly pull up my earlier article on Columnstore Index and copied the script to SQL Server Management Studio. I created two versions of the script. 1) [...]]]></description>
		<content:encoded><![CDATA[<p>[...] communicate the same positively. Well, this is what I did, I quickly pull up my earlier article on Columnstore Index and copied the script to SQL Server Management Studio. I created two versions of the script. 1) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Neeraj Kumar</title>
		<link>http://blog.sqlauthority.com/2011/10/29/sql-server-fundamentals-of-columnstore-index/#comment-299624</link>
		<dc:creator><![CDATA[Neeraj Kumar]]></dc:creator>
		<pubDate>Mon, 11 Jun 2012 07:45:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15283#comment-299624</guid>
		<description><![CDATA[Sir i am following the same process as explained by u above on a table having 200000 records.i am running the following query

Set statistics IO On
Select PortfolioID,StrategyID,SignalID,SecID,NoTrds=count(*),SUM(PL) from
(
SELECT  [TradeID]
      ,[PortfolioID]
      ,[StrategyID]
      ,[SignalID]
      ,[SecID]
 	  ,PL=case when LongStatus=1 then (EntryPrice-ExitPrice)* EntryQty else (EntryPrice-ExitPrice)* EntryQty*-1 END
	 
  FROM  [PST_BANK]
  ) As A group by PortfolioID,StrategyID,SignalID,SecID

It gives the following message

Table &#039;PST_BANK&#039;. Scan count 18, logical reads 22580, physical reads 0, read-ahead reads 0, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0.
Table &#039;Worktable&#039;. Scan count 0, logical reads 0, physical reads 0, read-ahead reads 0, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0.


Now i create the columnstore index as follows:

create nonclustered columnstore index[Neeaj_Index]
ON [pst_Bank] (portfolioID,strategyId,SignalID,SecID)

Set statistics IO On
Select PortfolioID,StrategyID,SignalID,SecID,NoTrds=count(*),SUM(PL) from
(
SELECT  [TradeID]
      ,[PortfolioID]
      ,[StrategyID]
      ,[SignalID]
      ,[SecID]
 	  ,PL=case when LongStatus=1 then (EntryPrice-ExitPrice)* EntryQty else (EntryPrice-ExitPrice)* EntryQty*-1 END
	 
  FROM [PST_BANK]  with (INDEX (Neeaj_Index)) 
  ) As A group by PortfolioID,StrategyID,SignalID,SecID

it gives following message

Table &#039;Worktable&#039;. Scan count 0, logical reads 0, physical reads 0, read-ahead reads 0, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0.
Table &#039;PST_BANK&#039;. Scan count 6, logical reads 4461739, physical reads 0, read-ahead reads 1515, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0.
Table &#039;Worktable&#039;. Scan count 0, logical reads 0, physical reads 0, read-ahead reads 0, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0.



The number of logical read increases....why??]]></description>
		<content:encoded><![CDATA[<p>Sir i am following the same process as explained by u above on a table having 200000 records.i am running the following query</p>
<p>Set statistics IO On<br />
Select PortfolioID,StrategyID,SignalID,SecID,NoTrds=count(*),SUM(PL) from<br />
(<br />
SELECT  [TradeID]<br />
      ,[PortfolioID]<br />
      ,[StrategyID]<br />
      ,[SignalID]<br />
      ,[SecID]<br />
 	  ,PL=case when LongStatus=1 then (EntryPrice-ExitPrice)* EntryQty else (EntryPrice-ExitPrice)* EntryQty*-1 END</p>
<p>  FROM  [PST_BANK]<br />
  ) As A group by PortfolioID,StrategyID,SignalID,SecID</p>
<p>It gives the following message</p>
<p>Table &#8216;PST_BANK&#8217;. Scan count 18, logical reads 22580, physical reads 0, read-ahead reads 0, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0.<br />
Table &#8216;Worktable&#8217;. Scan count 0, logical reads 0, physical reads 0, read-ahead reads 0, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0.</p>
<p>Now i create the columnstore index as follows:</p>
<p>create nonclustered columnstore index[Neeaj_Index]<br />
ON [pst_Bank] (portfolioID,strategyId,SignalID,SecID)</p>
<p>Set statistics IO On<br />
Select PortfolioID,StrategyID,SignalID,SecID,NoTrds=count(*),SUM(PL) from<br />
(<br />
SELECT  [TradeID]<br />
      ,[PortfolioID]<br />
      ,[StrategyID]<br />
      ,[SignalID]<br />
      ,[SecID]<br />
 	  ,PL=case when LongStatus=1 then (EntryPrice-ExitPrice)* EntryQty else (EntryPrice-ExitPrice)* EntryQty*-1 END</p>
<p>  FROM [PST_BANK]  with (INDEX (Neeaj_Index))<br />
  ) As A group by PortfolioID,StrategyID,SignalID,SecID</p>
<p>it gives following message</p>
<p>Table &#8216;Worktable&#8217;. Scan count 0, logical reads 0, physical reads 0, read-ahead reads 0, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0.<br />
Table &#8216;PST_BANK&#8217;. Scan count 6, logical reads 4461739, physical reads 0, read-ahead reads 1515, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0.<br />
Table &#8216;Worktable&#8217;. Scan count 0, logical reads 0, physical reads 0, read-ahead reads 0, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0.</p>
<p>The number of logical read increases&#8230;.why??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Neeraj Kumar</title>
		<link>http://blog.sqlauthority.com/2011/10/29/sql-server-fundamentals-of-columnstore-index/#comment-298747</link>
		<dc:creator><![CDATA[Neeraj Kumar]]></dc:creator>
		<pubDate>Sun, 10 Jun 2012 06:48:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15283#comment-298747</guid>
		<description><![CDATA[Nice Article Sir....thank you so much..
I am using column store index on a table having large number of records.
I just fired select query to fetch millions of record on two different tables on having normal index and another having column store  index.Both query takes almost same time. When i see the execution plan of both the query nearly both are same...i am doing something wrong??]]></description>
		<content:encoded><![CDATA[<p>Nice Article Sir&#8230;.thank you so much..<br />
I am using column store index on a table having large number of records.<br />
I just fired select query to fetch millions of record on two different tables on having normal index and another having column store  index.Both query takes almost same time. When i see the execution plan of both the query nearly both are same&#8230;i am doing something wrong??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER &#8211; Finding Size of a Columnstore Index Using DMVs &#171; SQL Server Journey with SQL Authority</title>
		<link>http://blog.sqlauthority.com/2011/10/29/sql-server-fundamentals-of-columnstore-index/#comment-298619</link>
		<dc:creator><![CDATA[SQL SERVER &#8211; Finding Size of a Columnstore Index Using DMVs &#171; SQL Server Journey with SQL Authority]]></dc:creator>
		<pubDate>Sun, 10 Jun 2012 01:33:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15283#comment-298619</guid>
		<description><![CDATA[[...] is my introductory article written on SQL Server Fundamentals of Columnstore Index. Create a sample columnstore index based on the script described in the earlier article. It will [...]]]></description>
		<content:encoded><![CDATA[<p>[...] is my introductory article written on SQL Server Fundamentals of Columnstore Index. Create a sample columnstore index based on the script described in the earlier article. It will [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anup Kumar</title>
		<link>http://blog.sqlauthority.com/2011/10/29/sql-server-fundamentals-of-columnstore-index/#comment-283782</link>
		<dc:creator><![CDATA[Anup Kumar]]></dc:creator>
		<pubDate>Fri, 11 May 2012 05:15:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15283#comment-283782</guid>
		<description><![CDATA[Pinal, tried your script during the SQL Server Launch Demo  and its works perfectly. The simplicity of the script helps everyone to connect to it. Thanks a lot.]]></description>
		<content:encoded><![CDATA[<p>Pinal, tried your script during the SQL Server Launch Demo  and its works perfectly. The simplicity of the script helps everyone to connect to it. Thanks a lot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL Server 2012: ColumnStore Characteristics &#124; Vinod Kumar (Blog home)</title>
		<link>http://blog.sqlauthority.com/2011/10/29/sql-server-fundamentals-of-columnstore-index/#comment-283462</link>
		<dc:creator><![CDATA[SQL Server 2012: ColumnStore Characteristics &#124; Vinod Kumar (Blog home)]]></dc:creator>
		<pubDate>Thu, 10 May 2012 03:02:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15283#comment-283462</guid>
		<description><![CDATA[[...] a conversation with Pinal, he had already written a number of blog posts on the same subject – fundamentals, ignoring columnstore, video demo of performance. Seeing this I thought maybe I want to write [...]]]></description>
		<content:encoded><![CDATA[<p>[...] a conversation with Pinal, he had already written a number of blog posts on the same subject – fundamentals, ignoring columnstore, video demo of performance. Seeing this I thought maybe I want to write [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER &#8211; Identify Columnstore Index Usage from Execution Plan &#171; SQL Server Journey with SQL Authority</title>
		<link>http://blog.sqlauthority.com/2011/10/29/sql-server-fundamentals-of-columnstore-index/#comment-281755</link>
		<dc:creator><![CDATA[SQL SERVER &#8211; Identify Columnstore Index Usage from Execution Plan &#171; SQL Server Journey with SQL Authority]]></dc:creator>
		<pubDate>Fri, 04 May 2012 01:30:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15283#comment-281755</guid>
		<description><![CDATA[[...] SQL SERVER – Fundamentals of Columnstore Index [...]]]></description>
		<content:encoded><![CDATA[<p>[...] SQL SERVER – Fundamentals of Columnstore Index [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pramod</title>
		<link>http://blog.sqlauthority.com/2011/10/29/sql-server-fundamentals-of-columnstore-index/#comment-277187</link>
		<dc:creator><![CDATA[Pramod]]></dc:creator>
		<pubDate>Wed, 18 Apr 2012 06:22:31 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15283#comment-277187</guid>
		<description><![CDATA[nice artical :)]]></description>
		<content:encoded><![CDATA[<p>nice artical :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rishi</title>
		<link>http://blog.sqlauthority.com/2011/10/29/sql-server-fundamentals-of-columnstore-index/#comment-271857</link>
		<dc:creator><![CDATA[Rishi]]></dc:creator>
		<pubDate>Wed, 04 Apr 2012 10:07:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15283#comment-271857</guid>
		<description><![CDATA[How is the data stored on the page in column store index.Is it physically stored or logically stored because Column Store index doesnt support Clustered index.]]></description>
		<content:encoded><![CDATA[<p>How is the data stored on the page in column store index.Is it physically stored or logically stored because Column Store index doesnt support Clustered index.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vinay Kumar Chella</title>
		<link>http://blog.sqlauthority.com/2011/10/29/sql-server-fundamentals-of-columnstore-index/#comment-270705</link>
		<dc:creator><![CDATA[Vinay Kumar Chella]]></dc:creator>
		<pubDate>Mon, 02 Apr 2012 04:50:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15283#comment-270705</guid>
		<description><![CDATA[Does order of the columns in columnstore index matters to performance?]]></description>
		<content:encoded><![CDATA[<p>Does order of the columns in columnstore index matters to performance?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: msftguy</title>
		<link>http://blog.sqlauthority.com/2011/10/29/sql-server-fundamentals-of-columnstore-index/#comment-265414</link>
		<dc:creator><![CDATA[msftguy]]></dc:creator>
		<pubDate>Tue, 20 Mar 2012 18:46:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15283#comment-265414</guid>
		<description><![CDATA[remember this is read only]]></description>
		<content:encoded><![CDATA[<p>remember this is read only</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vijay gupta</title>
		<link>http://blog.sqlauthority.com/2011/10/29/sql-server-fundamentals-of-columnstore-index/#comment-220800</link>
		<dc:creator><![CDATA[vijay gupta]]></dc:creator>
		<pubDate>Sun, 18 Dec 2011 19:25:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15283#comment-220800</guid>
		<description><![CDATA[sir i have a problem that i created a index but when i select this index for display records then it shown that invalid object name .i ckecked all things as database name but i was understanding what is the reason.please give me the solution of this problem]]></description>
		<content:encoded><![CDATA[<p>sir i have a problem that i created a index but when i select this index for display records then it shown that invalid object name .i ckecked all things as database name but i was understanding what is the reason.please give me the solution of this problem</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: eEma</title>
		<link>http://blog.sqlauthority.com/2011/10/29/sql-server-fundamentals-of-columnstore-index/#comment-203567</link>
		<dc:creator><![CDATA[eEma]]></dc:creator>
		<pubDate>Thu, 24 Nov 2011 09:39:51 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15283#comment-203567</guid>
		<description><![CDATA[Can i know if there s a view created on the base table which has a column store index, why does the execution plan not reflect &quot;Batch&quot;  mode. When i query the table directly the execution mode is &quot;Batch&quot;. through the view it is &quot;Row&quot;.]]></description>
		<content:encoded><![CDATA[<p>Can i know if there s a view created on the base table which has a column store index, why does the execution plan not reflect &#8220;Batch&#8221;  mode. When i query the table directly the execution mode is &#8220;Batch&#8221;. through the view it is &#8220;Row&#8221;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER &#8211; Video &#8211; Performance Improvement in Columnstore Index &#171; Journey to SQLAuthority</title>
		<link>http://blog.sqlauthority.com/2011/10/29/sql-server-fundamentals-of-columnstore-index/#comment-189738</link>
		<dc:creator><![CDATA[SQL SERVER &#8211; Video &#8211; Performance Improvement in Columnstore Index &#171; Journey to SQLAuthority]]></dc:creator>
		<pubDate>Mon, 07 Nov 2011 01:30:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15283#comment-189738</guid>
		<description><![CDATA[[...] earlier wrote an article about SQL SERVER – Fundamentals of Columnstore Index and it got very well accepted in community. However, one of the suggestion I keep on receiving for [...]]]></description>
		<content:encoded><![CDATA[<p>[...] earlier wrote an article about SQL SERVER – Fundamentals of Columnstore Index and it got very well accepted in community. However, one of the suggestion I keep on receiving for [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER &#8211; Updating Data in A Columnstore Index &#171; Journey to SQLAuthority</title>
		<link>http://blog.sqlauthority.com/2011/10/29/sql-server-fundamentals-of-columnstore-index/#comment-189195</link>
		<dc:creator><![CDATA[SQL SERVER &#8211; Updating Data in A Columnstore Index &#171; Journey to SQLAuthority]]></dc:creator>
		<pubDate>Sun, 06 Nov 2011 01:30:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15283#comment-189195</guid>
		<description><![CDATA[[...] SQL SERVER – Fundamentals of Columnstore Index [...]]]></description>
		<content:encoded><![CDATA[<p>[...] SQL SERVER – Fundamentals of Columnstore Index [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: saurabh</title>
		<link>http://blog.sqlauthority.com/2011/10/29/sql-server-fundamentals-of-columnstore-index/#comment-188200</link>
		<dc:creator><![CDATA[saurabh]]></dc:creator>
		<pubDate>Fri, 04 Nov 2011 08:49:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15283#comment-188200</guid>
		<description><![CDATA[Is This the New Feature in Sql 2012]]></description>
		<content:encoded><![CDATA[<p>Is This the New Feature in Sql 2012</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mat</title>
		<link>http://blog.sqlauthority.com/2011/10/29/sql-server-fundamentals-of-columnstore-index/#comment-187751</link>
		<dc:creator><![CDATA[Mat]]></dc:creator>
		<pubDate>Thu, 03 Nov 2011 11:04:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15283#comment-187751</guid>
		<description><![CDATA[+1]]></description>
		<content:encoded><![CDATA[<p>+1</p>
]]></content:encoded>
	</item>
</channel>
</rss>
