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 a record in a database?
Is like operator in sql case sensitive?
Why plvtab is considered as the easiest way to access the pl/sql table?
Give the structure of the function ?
What are sql procedures?
I have 2 table A and B. In A 1 lakh record is present. In b 20 thousand data is present. To get the unique data from table A and B which join we should prefer left inner join or right outer join. Please answer.
how to create temparary sequence
what is the use of double ampersand (&&) in sql queries?
How to execute multiple sql statements in a single annonymous block irrespective of the sql statement result?
What are functions in sql?
What is dcl in sql?
What is the difference between SQL table and the PLSQL table?