Difference between Cluster and Non-cluster index?
Answer Posted / chandu
Clustered index:
A Table have only one clustered index.
Once we defined a column with primary key constraint, sql
server automatically creates unique clustered index on that
column,
Actual rows arranged in same order as index.
Eg: Dictionary.
Non-clustered index:
Atable have 249 non clustered index.
Once we defined a column with unique key constrain , sql
server automatically create non clustered index.
Actual rows not arranged in same order as index.
Eg: Text book
| Is This Answer Correct ? | 9 Yes | 2 No |
Post New Answer View All Answers
What is the temp table?
what is a correlated sub-query? : Sql server database administration
How to disable triggers using "disable trigger"?
How do I change my passwords (database, LDAP, and so on) without causing an outage?
What is index in an assignment?
How to enable/disable indexes?
What are a scheduled jobs or what is a scheduled tasks?
Is it important for a database administrator to understand the operating system and file access?
What is the difference between a stored procedure and a user defined function?
What are the triggers in sql?
What are the new features of sql server 2012 reporting service?
Why do we partition data?
Explain the microsoft sql server delete command?
Can an automatic recovery be initiated by a user?
Recommend an approach to ensuring that all changes in the remote databases synchronize with the SQL Azure database?