How do you know what a good index is?

后端 未结 6 651
误落风尘
误落风尘 2020-12-14 23:54

When working with tables in Oracle, how do you know when you are setting up a good index versus a bad index?

6条回答
  •  北海茫月
    2020-12-15 00:35

    A good index is something that you can rely on to be unique for a specific table row.

    One commonly used index scheme is the use of numbers which increment by 1 for each row in the table. Every row will end up having a different number index.

提交回复
热议问题