Re: [PERFORM] Index row requires 9324 bytes maximum size is 8191

2009-09-24 Thread solAris23
Euler Taveira de Oliveira-2 wrote: solAris23 escreveu: I am trying to index a field in my database of size about 16K rows, but i m getting this error. Why are you want to index such a big field? BTW, it'll be worthless. Index row requires 9324 bytes maximum size is 8191 That

Re: [PERFORM] Index row requires 9324 bytes maximum size is 8191

2009-09-21 Thread Grzegorz Jaśkiewicz
not only that's slow, but limited as you can see. Use something like: http://gjsql.wordpress.com/2009/04/19/how-to-speed-up-index-on-bytea-text-etc/ instead. -- Sent via pgsql-performance mailing list (pgsql-performance@postgresql.org) To make changes to your subscription:

Re: [PERFORM] Index row requires 9324 bytes maximum size is 8191

2009-09-21 Thread Florian Weimer
* solAris: Also, average time to search for a query in a table is taking about 15 seconds. I have done indexing but the time is not reducing. Is there any way to reduce the time to less than 1 sec ??? How are your queries structured? Do you just compare values? Do you perform range

[PERFORM] Index row requires 9324 bytes maximum size is 8191

2009-09-19 Thread solAris23
Hello, I am trying to index a field in my database of size about 16K rows, but i m getting this error. Index row requires 9324 bytes maximum size is 8191 Can anyone please guide me how to remove this error Also, average time to search for a query in a table is taking about 15 seconds.

Re: [PERFORM] Index row requires 9324 bytes maximum size is 8191

2009-09-19 Thread Euler Taveira de Oliveira
solAris23 escreveu: I am trying to index a field in my database of size about 16K rows, but i m getting this error. Why are you want to index such a big field? BTW, it'll be worthless. Index row requires 9324 bytes maximum size is 8191 That is a known limitation; but even if it would be

Re: [PERFORM] Index row requires 9324 bytes maximum size is 8191

2009-09-19 Thread Pavel Stehule
Hello 2009/9/18 solAris23 vikas.ku...@dolcera.com: Hello, I am trying to index a field in my database of size about 16K rows, but i m getting this error. Index row requires 9324 bytes maximum size is 8191   Can anyone please guide me how to remove this error Also, average time to