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
Scalability, Availability, Integration with internet, etc.)?
How to receive returning result from a query?
What is the process of normalising?
What is the stuff and how does it differ from the replace function?
What are logical/boolean operations in ms sql server?
Find columns used in stored procedure?
What are the kinds of subquery?
What are user defined functions in ms sql server?
Write a sql query to delete duplicate records from a table called table1
Explain aggregate functions?
How do I find the query plan in sql server?
What is store procedure? How do they work?
Can you explain powershell included in sql server 2008?
What is sql server database?
Explain for xml explicit mode?