This is the SQL Server interview questions most asked during the interview so do revise before you go for the interview.
There are basically two types of indexes:-
In clustered index, the non-leaf level actually points to the actual data.
In Non-Clustered index the leaf nodes point to pointers (they are rowid’s) which then point to actual data.
Therefore, after the above fundamentals following are the basic differences between them:-
Click for more SQL Server interview questions
Regards,
Visit for more author’s blog on SQL Server interview questions
There are basically two types of indexes:-
- Clustered Indexes.
- Non-Clustered Indexes.
In clustered index, the non-leaf level actually points to the actual data.
Figure: - Clustered Index Architecture
Figure: - Non-Clustered Index has pointers
So here is what the main difference is in clustered and non-clustered, in clustered when we reach the leaf nodes we are on the actual data. In non-clustered indexes, we get a pointer, which then points to the actual data.Therefore, after the above fundamentals following are the basic differences between them:-
- indexes as we have pointers, which is logical arrangement we do need this compulsion. Also, note in clustered index actual data as to be sorted in same way as the clustered indexes are. While in non-clustered
- So we can have only one clustered index on a table as we can have only one physical order while we can have more than one non-clustered indexes.
Click for more SQL Server interview questions
Regards,
Visit for more author’s blog on SQL Server interview questions
1 comment:
Thanks for this valuable list of Interview Questions
Post a Comment