PostgreSQL 7.4 (Yep upgrading)

So in my WHERE condition I have this

AND CASE
    WHEN "substring"(t."FieldID"::text, 0, 3) = '01'::text 
        OR "substring"(t."FieldID"::text, 0, 4) = '123'::text 
        OR "substring"(t."FieldID"::text, 0, 5) = '5555'::text 
        OR "substring"(t."FieldID"::text, 0, 6) = '44444'::text 
        OR "substring"(t."FieldID"::text, 0, 3) = '99'::text 
    THEN 1
    ELSE 0
END = 1

Alternate syntax but no change in Cost

AND CASE
    WHEN "substring"(t."FieldID"::text, 0, 3) = '01'::text THEN 1
    WHEN "substring"(t."FieldID"::text, 0, 4) = '123'::text THEN 1
    WHEN "substring"(t."FieldID"::text, 0, 5) = '5555'::text THEN 1
    WHEN "substring"(t."FieldID"::text, 0, 6) = '44444'::text THEN 1
    WHEN "substring"(t."FieldID"::text, 0, 3) = '99'::text THEN 1    
    ELSE 0
END = 1

Looking for a Cost effective way to limit the results by the start of a string. So if the string starts with 01, 123, 5555, 44444 or 99 add it to the result set.

Any thoughts?

Note: the FieldID is indexed Viewing the Explain data to see the bottle necks in the query, when adding the above code is when the cost of the Sort goes way up and slows the return of the data set/results.

Output from Explain:

Sort (cost=88716.84..88719.89 rows=822 width=64)

there is a ton more as the query is complex but if I remove the part of the code the Sort cost goes way down

link|improve this question

a the prefixes ('01', '123', etc) known at schema definition time or are they dependent on the individual queries? – TokenMacGuy Sep 13 '11 at 21:09
it's a data field that contains an integer – Phill Pafford Sep 13 '11 at 21:12
I mean the prefixes always the same for every query, or do you look for different sets of prefixes in each query? – TokenMacGuy Sep 13 '11 at 21:15
sry yes, I only need to look for those prefixes, they will not change but could be added to in the future. So more of them – Phill Pafford Sep 13 '11 at 21:16
feedback

4 Answers

up vote 2 down vote accepted

If you are just filtering by the starting chars, you can use like with no problem and it will just use an index.

AND (t."FieldID"::text LIKE '01%' OR 
     t."FieldID"::text LIKE '123%' OR 
     t."FieldID"::text LIKE '5555%' OR
     t."FieldID"::text LIKE '44444%' OR
     t."FieldID"::text LIKE '99%')
link|improve this answer
would this also be faster then a RegEx? t."FieldID" ~'^01' – Phill Pafford Sep 14 '11 at 2:30
@Phill, in this example yes, it's hard to use an index with regex. But you could build a regex index in other circumstances. – Johan Sep 14 '11 at 10:12
feedback

you might get some traction by defining expression indexes that match the query; something like

CREATE INDEX t_fieldid_prefix_3 ON t (("substring"("FieldID"::text, 0, 3)))
CREATE INDEX t_fieldid_prefix_4 ON t (("substring"("FieldID"::text, 0, 4)))
CREATE INDEX t_fieldid_prefix_5 ON t (("substring"("FieldID"::text, 0, 5)))
CREATE INDEX t_fieldid_prefix_6 ON t (("substring"("FieldID"::text, 0, 6)))

If you're always looking for the same prefixes, include the whole thing in the index:

CREATE INDEX t_fieldid_prefix ON t((CASE
    WHEN "substring"("FieldID"::text, 0, 3) = '01'::text 
        OR "substring"("FieldID"::text, 0, 4) = '123'::text 
        OR "substring"("FieldID"::text, 0, 5) = '5555'::text 
        OR "substring"("FieldID"::text, 0, 6) = '44444'::text 
        OR "substring"("FieldID"::text, 0, 3) = '99'::text 
    THEN 1
    ELSE 0
END))
link|improve this answer
would something like this work even if FieldID is already index? – Phill Pafford Sep 13 '11 at 21:24
Looking at the syntax for 7.3 you might have to define a function to support the latter case, since it doesn't appear to allow arbitrary expressions. – TokenMacGuy Sep 13 '11 at 21:24
the index for FieldID won't accelerate filtering on complex expressions like substring(); but an expression index can allow the query planner to look for matching rows directly. – TokenMacGuy Sep 13 '11 at 21:25
feedback

I have no idea whether this is supported by your ancient version, but you could try to create an index on the sort expression to see if that improves the query:

CREATE INDEX idx_case ON the_table (
  (CASE
      WHEN substring("FieldID", 0, 3) = '01' THEN 1
      WHEN substring("FieldID", 0, 4) = '123' THEN 1
      WHEN substring("FieldID", 0, 5) = '5555' THEN 1
      WHEN substring("FieldID", 0, 6) = '44444' THEN 1
      WHEN substring("FieldID", 0, 3) = '99' THEN 1    
      ELSE 0
  END));

With a current version I'm pretty sure this could be used to improve the ORDER BY step

link|improve this answer
would something like this work even if FieldID is already index? – Phill Pafford Sep 13 '11 at 21:24
@Phil: yes that will work, because the (complete) index expression is different. – a_horse_with_no_name Sep 14 '11 at 6:15
feedback

Depending on how often this sort of query is run, and also on how much data there is, you might consider calculating some of this external to the query and adding extra columns to use as indexes only. The same way a data warehouse denormalizes to speed up reporting queries.

link|improve this answer
about 500,000 records and it's a heavily used database with lots of indexes. The query will run multiple times throughout the day which is why I'm looking for a performance tweak – Phill Pafford Sep 13 '11 at 21:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.