Unique Index and Simple Index

What is difference between unique index and simple index?is it possible, two rows can have the same unique index?

Questions by newqtp   answers by newqtp

Showing Answers 1 - 6 of 6 Answers

Unique Index:
If the index is for a primary or unique key then the owner, name, type, and columns cannot be modified. These properties are all derived from the key constraint. Changing the name of the key constraint will automatically change the name of the corresponding index, changing the constraint columns will change the corresponding columns for the index. The owner will always be the same as the owner of the table,

and the type of the index will always be unique.

Simple Index: If the index is created with out any constraint on a table it will be simple index.

Hope this answers your question.

Cheers,
Srini.

  Was this answer useful?  Yes

sampra

  • Mar 6th, 2012
 

index create on Primary key or unique key is Unique index where as index created on any other element is simple index

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions