Subject | Re: What is duplicate index? |
---|---|
Author | Adam |
Post date | 2006-08-23T03:59:24Z |
--- In firebird-support@yahoogroups.com, "Mohammad Jeffry"
<linuxlah@...> wrote:
create index a on c(d);
create index b on c(d);
Normally it is less obvious. People may not realise that unique
constraints, foreign keys and primary keys automatically create an
index on those fields, and by defining their own index on those fields
they are creating a duplicate index.
Adam
<linuxlah@...> wrote:
>duplicate
> I understand that duplicate index can slow down firebird. What is
> index? How can one create duplicate index? example pleaseTwo different indices that reference the same field(s).
create index a on c(d);
create index b on c(d);
Normally it is less obvious. People may not realise that unique
constraints, foreign keys and primary keys automatically create an
index on those fields, and by defining their own index on those fields
they are creating a duplicate index.
Adam