Quote:
> Does PostgreSQL create an index when a table is created?
Yes, with PK.
Quote:
> Does it create index even if there is no PK for this table?
No.
Quote:
> I know that indexes increase performance for SELECT but it is the
> contrary when INSERT because the index must be actualised every time,
> isn't it?
Yes.
Quote:
> How can I see all the index that PostgreSQL have implicitly create?
You can, from psql, do:
# \d table_name
This order shows all info about a table, including existing indexes.
Quote:
> How can I delete them in keeping integrity in the database?
drop index?...
Greets.
David
---------------------------(end of broadcast)---------------------------
TIP 5: Have you checked our extensive FAQ?
http://www.postgresql.org/users-lounge/docs/faq.html