Re: Query organization question

From: "Gauthier, Dave" <dave(dot)gauthier(at)intel(dot)com>
To: Grzegorz Jaśkiewicz <gryzman(at)gmail(dot)com>
Cc: "pgsql-general(at)postgresql(dot)org" <pgsql-general(at)postgresql(dot)org>
Subject: Re: Query organization question
Date: 2009-04-27 21:15:05
Message-ID: 482E80323A35A54498B8B70FF2B879800400E39FE2@azsmsx504.amr.corp.intel.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

The example was fictitious, but the structure is the same as the real problem.

The stored procedure calls another recursive stored procedure that can take a long time to run, usually about 3-4 seconds. Not bad for a handful of records, but it is now operating on a table with over 40,000 records.

Without the stored procedure call (the fictitious "get_jobs" call), it returns about 50 records. I can live with the 2-3 minutes it'll take to run the stored proc for those, but not the 40,000+. This is why I tried to segregate it the way I did.

-----Original Message-----
From: Grzegorz Jaśkiewicz [mailto:gryzman(at)gmail(dot)com]
Sent: Monday, April 27, 2009 5:04 PM
To: Gauthier, Dave
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: [GENERAL] Query organization question

>   exists (select 'found_it' from get_jobs(x.name) j where j.job =
> 'carpenter');
What does this function do ?
If it only runs on the tables, than simple join will do it pretty fast.
also, keeping job as integer, if table is large will save you some
space, make index lookup faster, and generally make everything faster.
Subselects always perform poor, so please try writing that query as
join first. Postgresql is capable of reordering, and choosing right
approach for query, this isn't mysql - you don't have try to outsmart
db.

--
GJ

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Richard Broersma 2009-04-27 21:24:40 Re: triggers and execute...
Previous Message Grzegorz Jaśkiewicz 2009-04-27 21:03:51 Re: Query organization question