WHY CAN WE CREATE ONLY ONE CLUSTERED INDEX ON A TABLE IN
SQL SERVER?
Answer Posted / jai
A clustered index sorts and stores the data rows in the table based on the index key values. Therefore only one clustered index can be created on each table because the data rows themselves can only be sorted in one order.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Using the customer, and order table in northwind database, please write a query to produce xml?
What specific conditions database should meet, before you can bulk copy data into it using bcp?
What is the purpose of update statistics and scope_identity() function?
Can a stored procedure call itself or recursive stored procedure? How much level sp nesting is possible?
What are extended events in sql server?
What is the maximum size per database for sql server express?
Can we use trigger new in before insert?
What does dml stand for?
How to set a database state to offline in ms sql server?
Why is there a performance difference between two similar queries where one uses union and the other uses union all?
Explain the disadvantages/limitation of the cursor?
What are the mathematical functions supported by sql server 2005?
How can you find out how many rows returned in a cursor?
What is ms sql server triggers?
What is the user of Primary key?