20+ SQL Server Interview Questions : kzbin.info/www/bejne/iXbHcnluorh-iZY 30 Important C# Interview Questions : kzbin.info/www/bejne/eHzcn3h4hdacf68 25 Important ASP.NET Interview Questions : kzbin.info/www/bejne/ponQfpejf7p2Zsk 25 Angular Interview Questions : kzbin.info/www/bejne/Y5vIoKx6f6mmia8 5 MSBI Interview Questions : kzbin.info/www/bejne/a3abYmiXjaaqj7M
@sumantabasu44504 жыл бұрын
Really good overview of the concept. However one question - even for an OLAP scenario, if the requirement is to retrieve all the columns of a table by a select query on basis of an ID field , does column store index on each field really provides any benefit ? or just non clustered index on that id field is sufficient?
@irfankhanmohammed6964 Жыл бұрын
Great explanation Sir. I have a question. Is Nonclustered columnstore index is different to nonclustered index? Can you please answer this? I am bit confuse.
@rakeshranjan7647 Жыл бұрын
Yes it is , non cluster index store data row wise i e all column in a single page of 8 kb but when you create non clustered columnstore index on any column or group of column then each column is store in a separate 8 kb page
@nikhilreddy85503 жыл бұрын
If it is a Clustered Index, shouldn't the leaf node contain the actual entire row rather than pointing to the row? That is also the reason we can only have 1Clustered Index.
@srinivasavula72684 жыл бұрын
As a developer of ms sql server in my regular performance tuning I am creating indexes on queries having date columns as filters(ex retrieving the data created between 01-jan-2020 and 31-jan-2020),but sql server not recommended this column while creating the index...please explain...Thank you.
@srinivasavula72684 жыл бұрын
Nice explanation sir..Column store index will increase the overall table size right...
@amitbhattacharyya59252 жыл бұрын
Can it support around 600 million rows 90 col table where i would do col index on about 60 col ? Any idea
@mohanpara45353 жыл бұрын
how compression works ? Will it merge duplicate values in a column as a single value ?
@BornDude25 Жыл бұрын
Yes,it applies compression on similar values which makes it more performant
@好好好-y3b Жыл бұрын
Thank you for the excellent explanation.
@tejaswil16562 жыл бұрын
Thank you sooooooooooooooooo much sir.... very clearly explained. This helps a lot💗🤝God bless you
@pratikfutane813110 ай бұрын
Great explanation!
@sridharramalingam32911 ай бұрын
Very well explained, thanks
@amitthorat61832 жыл бұрын
Thank you! Highly engaging and informative video.
@rekhakalyani29034 жыл бұрын
Why am I not able to see clustered index in execution plan ? I have clustered and non clustered indexed on my table..when I click on execution plan I can't see the index just like your screen
@thearchibaldtuttle2 жыл бұрын
Thank you for this intro!
@baskarlakshmi8895 жыл бұрын
I have created columnstored index after that am faced error update statement failed because in a table that has a noncluster index. Consider disabling the volume tire index before issuing the update statement and then rebuilding the columstore index..Pls advice
@sanjayschopra53162 жыл бұрын
I need your help please let me know can we connect
@dhanarajumattaparthi63993 жыл бұрын
Nicely explained...
@jatindersingh22413 жыл бұрын
Very well explained , Thanks for sharing
@vikaspandey41284 жыл бұрын
Really nice article and it helps me in clearing my doubts.
@theislamicvoyager3 жыл бұрын
I really like the explanation
@avulasaikumar30812 жыл бұрын
Thank you very much for this video.
@TheOntheskies5 жыл бұрын
Very good explanation. Thank you!
@ranjithashetty57735 жыл бұрын
Can you please provide the link for step by step SQL videos
@dnfvideo5 жыл бұрын
Here is the one hour video link for SQL step by step learning - kzbin.info/www/bejne/q3jPl4NvpJyeo7s
@abraceyiii6 жыл бұрын
awesome explaination...keep up the good work
@tushibhaque8637 жыл бұрын
Thanks fr this great tutorial...was waiting fr a video about columnstore index..
@alexanderlinders49994 жыл бұрын
Very helpful video!
@kirankumarkommalapudi99477 жыл бұрын
Column store index will have clusterd and non clusterd again? Syntax above creating non clusterd column store index...
@ryanshannon77036 жыл бұрын
A clustered column store index is ALL columns being column store, which probably won't make much sense in most scenarios. Even in a Fact table of an OLAP, I'm not sure how a clustered column store index would be beneficial, other than just not creating a bunch of nonclustered column store indices in terms of coding. Starting in SQL Server 2016, they allow non clustered index on column store (and vice versa), as when you start drilling down to very specific entries into your OLAP data, the non clustered index will be more helpful than the column store, which makes sense (less entries per page, but more relevant towards specific entries required for data return which means less densely packed pages to sift through). That's why for aggregates, column stores are like, way awesome.
@koushikdey1002 жыл бұрын
Great 👌👌
@ajaysharma20615 жыл бұрын
Very much informative and helpful. Thank you for this.