Difference between Cluster and Non-cluster index?
Answer Posted / ricky
when we create a primery key it automatically create
aclustered index. clustered index is a index which reorder
the records in a way the recored are physically sorted.
or
in clustered index the logical order match the physical
order.
whre as the non-clustered index the logical ordered of the
recored does not match the physical order of the recored on
disk.
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
How to use subqueries in the from clause in ms sql server?
Explain the architecture of ms sql reporting service?
what is bit datatype and what's the information that can be stored inside a bit column? : Sql server database administration
How data can be copied from one table to another table?
What are the database roles? : sql server security
how to take backup bcp out for a column in table in sql server?
What is query optimization process?
What is the maximum size of a row in sql server?
What are the encryption mechanisms in sql server?
Explain magic tables in sql server?
What is the difference between dbcc indexdefrag and dbcc reindex?
How to count rows with the count(*) function in ms sql server?
How to view existing indexes on an given table using sys.indexes?
Suppose you want to implement the one-to-many relationships while designing tables. How would you do it?
Difference between DELETE and TRUNCATE?