Re: [PERFORM] Setting "nice" values

2006-11-05 Thread Jim Nasby
On Nov 2, 2006, at 9:14 AM, Madison Kelly wrote: I've got a script (perl, in case it matters) that I need to run once a month to prepare statements. This script queries and updates the database a *lot*. I am not concerned with the performance of the SQL calls so much as I am about the impact it

Re: [PERFORM] Slow functional indexes?

2006-11-05 Thread Gene
I have a varchar field which is most commonly queried like "someField like '%abcd'". Realizing that it wouldn't be able to use an index for this type of query I created a reverse() function and an index using the function reverse(someField) so that the query would be performed as "reverse(someField

Re: [PERFORM] Slow functional indexes?

2006-11-05 Thread Tom Lane
Stuart Bishop <[EMAIL PROTECTED]> writes: > Here is a minimal test case that demonstrates the issue. Can anyone else > reproduce these results? Of the four EXPLAIN ANALYZE SELECT statements at > the end, the one that orders by a user created IMMUTABLE stored procedure is > consistently slower than

Re: [PERFORM] Slow functional indexes?

2006-11-05 Thread Stuart Bishop
Stuart Bishop wrote: > I would like to understand what causes some of my indexes to be slower to > use than others with PostgreSQL 8.1. On a particular table, I have an int4 > primary key, an indexed unique text 'name' column and a functional index of > type text. The function (person_sort_key()) i