Can we create non-clustured index on a clustered index ?
Answer Posted / andrew g avelin
Clustered indexes sort and store the data rows in the table
based on their key values. There can only be one clustered
index per table, because the data rows themselves can only
be sorted in one order. For more information about
clustered index architecture
A nonclustered index contains the index key values and row
locators that point to the storage location of the table
data
---------------
when you create a clustered index It sorts data physically
which is not same with non-clustured index, this is the
reason why there can be only one clustered index per table
and multiple non-clustered index.
---------------
Both indexes work as B-Tree structure .
But clustered index store actual data in leaf level node
and non - clustered index stored row pointer
-----------------
For a clustered index, the database will sort the table's
records according to the column (or columns) specified by
the index. A clustered index contains all of the data for a
table in the index, sorted by the index key, just like a
phone book is sorted by name and contains all of the
information for the person inline. The nonclustered indexes
contain only the index key and a reference to find the
data, which is more like a book index. A book index stores
words in order with a reference to the page numbers where
the word is located. You can only create one clustered
index on each table.
---------------------
Clustered indexes are created usally when we create Primary
key.Atmost we can have only one clustered index
Non clustered indexes are created on the table columns
We can have maximum of 241
| Is This Answer Correct ? | 12 Yes | 3 No |
Post New Answer View All Answers
what are the properties and different types of sub-queries? : Sql dba
when MSQL8.0 is in market
How many types of cursors are available in pl/sql?
how can you see all indexes defined for a table? : Sql dba
Why do we use partitions in sql?
What is the purpose of my sql?
explain the difference between bool, tinyint and bit. : Sql dba
Explain select statements in sql?
Can sql developer connect to db2?
what are the differences between procedure-oriented languages and object-oriented languages? : Sql dba
How do I restart sql?
what is the difference between group by and order by in sql? : Sql dba
Is pl sql a programming language?
How can you view the errors encountered in a trigger?
What is interval partition?