What is clustered, non-clustured and unique index. How many
indexes can be created on a table ?
Answers were Sorted based on User's Feedback
Answer / rajkumar
please don't give oracle answers in sqlserver
Is This Answer Correct ? | 12 Yes | 8 No |
Answer / leena
clustered index physically store data orderly in a
table,but non-clustered index store data logically not
physically.
primary key is by default clustered index,and unique key is
by default non-clustered index.
A table can contain only one cluster index.
Is This Answer Correct ? | 3 Yes | 2 No |
Answer / amit
A clustered index are those which created by user manually
and non clustered are automatically created by oracle server
when we create a primary key or a unique key on a column.
and as many as indexes can be created on table but it will
reduces the performance of the database.
Is This Answer Correct ? | 1 Yes | 10 No |
what is 'mysqlcheck'? : Sql dba
What are different clauses used in sql?
Show the cursor attributes of pl/sql.
what is d diff between grant,commit,rollback n savepoint
Can we join two tables without common column?
Is sql similar to python?
What are the types of operators available in sql?
How do I run a program in pl sql?
What is the difference between an inner join and an outer join?
Why truncate is faster than delete?
what is a trigger? : Sql dba
What is the difference between rollback and rollback to statements?