Re: [GENERAL] Modify existing index

2007-04-21 Thread A. Kretschmer
am Sat, dem 21.04.2007, um 0:20:45 -0700 mailte RPK folgendes: > > How to see the details of indexes being used by a table? If I want to drop an Within psql, type '\d '. > index, how can I do that? DROP , perhaps with option CASCADE. Please read our documentation... Andreas -- Andreas Kr

Re: [GENERAL] Modify existing index

2007-04-21 Thread RPK
How to see the details of indexes being used by a table? If I want to drop an index, how can I do that? >The choice of what your primary key is should arise from the schema >design, not the frequency of queries. If you are querying columns >other than the primary key, just add another index.

Re: [GENERAL] Modify existing index

2007-04-20 Thread Peter Eisentraut
RPK wrote: > I have a table and a column that is primary key. I want to modify the > existing index and use two other columns to be used for indexing. > Since queries will be run using these two columns, hence I want to > use them. The choice of what your primary key is should arise from the schem

[GENERAL] Modify existing index

2007-04-20 Thread RPK
I have a table and a column that is primary key. I want to modify the existing index and use two other columns to be used for indexing. Since queries will be run using these two columns, hence I want to use them. Can I modify the existing index using pgAdmin? Which type of index will suit this ta