What is clustered and non-clustered indexes?

Answers were Sorted based on User's Feedback



What is clustered and non-clustered indexes?..

Answer / thangaprabu.n

Apart From above answer,One table Contain only 1 Cluster
index and 249 Non-Cluster Indexes

Is This Answer Correct ?    9 Yes 2 No

What is clustered and non-clustered indexes?..

Answer / shubhi

There are clustered and nonclustered indexes. A clustered
index is a special type of index that reorders the way
records in the table are physically stored. Therefore table
can have only one clustered index. The leaf nodes of a
clustered index contain the data pages.

A nonclustered index is a special type of index in which
the logical order of the index does not match the physical
stored order of the rows on disk. The leaf node of a
nonclustered index does not consist of the data pages.
Instead, the leaf nodes contain index rows.

Is This Answer Correct ?    9 Yes 3 No

What is clustered and non-clustered indexes?..

Answer / nive

clustered index are physically sorted

Is This Answer Correct ?    6 Yes 2 No

What is clustered and non-clustered indexes?..

Answer / ganesh sial

both index are stored physically but cluster index is create block of key value which more helps to like join,hash condition,more reliable to parent child relation ship

ex:- deptno is primary key for dept table, its create cluster index,

when write query of join like

select a.empno,a.deptno,b.loc from emp a,dept b where a.deptno=b.deptno

this case the cluster index helps to better perfomance

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More SQL PLSQL Interview Questions

What can I use instead of union in sql?

0 Answers  


wht is the difference between truncat,drop in sqlserver wht is the difference between function and stored procedure

3 Answers   Apollo,


What is the diff between Truncate table / delete <table name> purge

3 Answers   TCS,


suppose u hav 1 book with set...page 1-100 n 101 -200 now print page from 2-100 n 102 -200... how we will do..?

6 Answers  


How do I run sql profiler?

0 Answers  






what is the difference between a local and a global temporary table? : Sql dba

0 Answers  


what is explain plan?, given an example...

3 Answers   Polaris,


what is index? : Sql dba

0 Answers  


how many tables will create when we create table, what are they? : Sql dba

0 Answers  


What are the advantages and disadvantages, compared to the standard SQL and SQL*plus ?

2 Answers  


what is meant by databases

4 Answers  


Is primary key always clustered index?

0 Answers  


Categories