What are the different types of Indexcies
Cluster vs Non Clustered Index
CREATE [Cluster|NonCluster] INDEX index-name
ON (column [asc|desc])
What is a
Cluster Index
Oracle database calls this concept index-organized tables (IOT)
cluster index - where the rows are stored in the primary key order, physically on the disk
Oracle defines the term “cluster” to mean that different row types can be stored inside the same table block, sort of a physical way to pre-join tables together, when used with rows for the primary-foreign key relationships. Hence, the term cluster index has a different meaning that with SQL Server and DB2 cluster indexes