bob_bamber (AT) hotmail (DOT) com (Bob) writes:
Quote:
I'm having some performance issues when querying a couple of tables
containing a large amount of data.
foo=# SELECT data_id FROM capacity_data WHERE data_id NOT IN (SELECT
data_id FROM capacities); |
Try PG 7.4, or if you're on 7.4, try increasing sort_mem. IN and NOT IN
have pretty sucky performance in earlier releases. (If you can't
upgrade for some reason, you could try using EXISTS instead of IN.)
regards, tom lane
---------------------------(end of broadcast)---------------------------
TIP 9: the planner will ignore your desire to choose an index scan if your
joining column's datatypes do not match