Difference between Cluster and Non-cluster index?
Answer Posted / rahul
A) Creating a clustered index on a table re-arranges the data in a sequential manner. while creating clustered index, certain guidelines must be followed. They are:
1) Queries should return a range of values by using operators such as, BETWEEN, > , >= , < and <=.
B) Non-clustered index is created on a table, the data is not physically re-arranged in sequential order.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
query processing
What are binary string data types in ms sql server?
How to connect to a sql server using odbc_connect()?
What do you understand by replication in sql server?
What is cube dimension? : sql server analysis services, ssas
What are different types of raid configurations? : SQL Server Architecture
What are the advantages of user-defined functions over stored procedures in sql server?
What is difference in performance between insert top (n) into table and using top with insert?
What should be the fill factor for indexes created on tables? : sql server database administration
How to create a login account in ms sql server to access the database engine using "create login" statements?
Does a server store data?
What's new in sql management studio for sql server? : sql server management studio
What is temporal data type?
How to round a numeric value to a specific precision?
Tell me what is fill factor?