Re: Is there anything I should watch out for when creating temporary tables with psycopg2? - Mailing list psycopg

From Federico Di Gregorio
Subject Re: Is there anything I should watch out for when creating temporary tables with psycopg2?
Date
Msg-id 4E4B909A.2020407@dndg.it
Whole thread Raw
In response to Is there anything I should watch out for when creating temporary tables with psycopg2?  ("W. Matthew Wilson" <matt@tplus1.com>)
List psycopg
On 12/08/11 19:59, W. Matthew Wilson wrote:
> I'm breaking one gigantic query into several temporary tables and,
> then I'll join those and then do a select.
>
> Is there anything I should watch out for?
>
> Also, what are some other good methods to reduce gigantic queries into
> manageable amounts?

It depends on what you want. Speed? To easily manage query SQL? Here we
don't use temporary table but table-returning SQL procedures (not
plpgsql, just plain sql) and then do something like:

SELECT * FROM procedure1(customer_id, date) A, procedure2(...) B
 WHERE A.id = B.id ...

and so on.

federico

--
Federico Di Gregorio                         federico.digregorio@dndg.it
Studio Associato Di Nunzio e Di Gregorio                  http://dndg.it
                      The number of the beast: vi vi vi. -- Delexa Jones

psycopg by date:

Previous
From: "W. Matthew Wilson"
Date:
Subject: Is there anything I should watch out for when creating temporary tables with psycopg2?
Next
From: Federico Di Gregorio
Date:
Subject: Vacancy!