In clustered and non clustered indexes which one is faster
while executing a query ?
Answer Posted / arunyadav007
Clustered Index.
Because the leaf level of a clustered index is the actual
data and the data is resorted in case of clustered index.
In case of non-clustered index the leaf level is actually a
pointer to the data in rows. The data is stored in one
place, the index in another, with pointers to the storage
location of the data. The items in the index are stored in
the order of the index key values, but the information in
the table is stored in a different order.
Thanks,
Arun
| Is This Answer Correct ? | 13 Yes | 3 No |
Post New Answer View All Answers
Define outer join?
Explain the collation?
Define msdb database?
Explain powershell included in sql server 2008?
How do you check sql server is up and running?
What is the difference between online clustering and Offline clustering?
Explain the stored procedure?
Explain about Views?
you want to be sure that queries in a database always execute at the maximum possible speed. To achieve this goal you have created various indexes on tables which other statement will keep the database in good condition? : Sql server administration
What happens to a statement batch if there is a compilation error?
What is sharding?
What is bcnf normalization form?
What is snapshot replication?
Do you know spatial data types - geometry and geography in sql server 2008?
What is the recovery model? List the types of recovery model available in sql server?