6

SQL SERVER - Replace Rowstore Clustered Index with Columnstore Clustered Index -...

 2 years ago
source link: https://blog.sqlauthority.com/2021/05/28/sql-server-replace-rowstore-clustered-index-with-columnstore-clustered-index/?utm_campaign=sql-server-replace-rowstore-clustered-index-with-columnstore-clustered-index
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
Replace Rowstore Clustered Index with Columnstore Clustered Index

SQL SERVER – Replace Rowstore Clustered Index with Columnstore Clustered Index

A very interesting scenario happened while I was working with my client on Comprehensive Database Performance Health Check. After careful research, we identified that they can take the help of columnstore clustered index for their table. Let us learn in this blog post how to Replace Rowstore Clustered Index with Columnstore Clustered Index.

SQL SERVER - Replace Rowstore Clustered Index with Columnstore Clustered Index ReplaceRowstore-800x450

The table on which he wanted to create already has a clustered index on it. He ran the following command assuming that the query will drop the existing rowstore column store index and create a new clustered columnstore index. However, that did not happen and the query gave the error.

Here is the command:

CREATE CLUSTERED COLUMNSTORE INDEX [PK_TestTable] ON [dbo].[TestTable]
WITH (DROP_EXISTING = ON);

Here is the error:

Msg 1907, Level 16, State 1, Line 1
Cannot recreate index ‘PK_TestTable’. The new index definition does not match the constraint being enforced by the existing index.

It was very clear from the experiment that one can’t just command DROP_EXISTING = ON to drop rowstore index and create clustered columnstore index. If you want to create a clustered columnstore index, you either have to create that on the HEAP table or first drop your rowstore clustered index. There is no command to Replace Rowstore Clustered Index with Columnstore Clustered Index.

Here is another video where I explain how DROP_EXISTING work.

Here are my few recent videos and I would like to know what is your feedback about them.

Reference: Pinal Dave (http://blog.SQLAuthority.com)


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK