Difference between Cluster and Non-cluster index?
Answer Posted / kshirsagar sambhaji
The difference is that, Clustered index is unique for any
given table and we can have only one clustered index on a
table. The leaf level of a clustered index is the actual
data and the data is resorted in case of clustered index.
Whereas in case of non-clustered index the leaf level is
actually a pointer to the data in rows so we can have as
many non-clustered indexes as we can on the db.
| Is This Answer Correct ? | 48 Yes | 19 No |
Post New Answer View All Answers
What is a field in a table?
What is attribute relationships, why we need it? : sql server analysis services, ssas
What is sql server agent and what are the two modes of authentication in sql server?
How to receive returning result from a query?
Explain “row_number()” in sql server with an example?
how do you determine the Load performance of any query in sql server {example how do u determine performance of a select stmnt which returns Dynamically many no of records ... some times 100,1000,10000 etc., }
What is a hint?
How to store and query spatial data?
Explain what is the main purpose of having conversation group?
Can you change the data type of a column in a table after the table has been created? If so, which command would you use?
What is difference between clustered index and non clustered index?
What are types of subqueries?
Explain identity in sql server?
Which table keeps information about stored procedures?
Tell me what is use of except clause? How it differs from not in clause?