From: | "A(dot) Kretschmer" <andreas(dot)kretschmer(at)schollglas(dot)com> |
---|---|
To: | pgsql-general(at)postgresql(dot)org |
Subject: | Re: SELECT INTO TEMPORARY problem |
Date: | 2007-01-17 17:16:53 |
Message-ID: | 20070117171652.GA17013@a-kretschmer.de |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
am Wed, dem 17.01.2007, um 16:04:10 +0000 mailte David Goodenough folgendes:
> I have a servlet which gets its data through a DataSource (Tomcat 5.5)
> and starts each request as a new SQL transaction and either commits
> the transaction or rolls it back at the end of each request.
>
> In one of the requests I do a SELECT ... INTO TEMPORARY t1 ..., which
> works just fine when I first use it, but from then on it objects saying
> that t1 already exists. When I read the documentation (8.1 as that is
> what I am using) I thought I understood that the table would disappear
> at the end of the transaction. Other than deleting it, is there something
> else I need to do or have I missunderstood that into temporary does?
known problem, FAQ. Use EXECUTE for your DDL-Statements.
http://www.postgresql.org/docs/faqs.FAQ.html#item4.19
Andreas
--
Andreas Kretschmer
Kontakt: Heynitz: 035242/47150, D1: 0160/7141639 (mehr: -> Header)
GnuPG-ID: 0x3FFF606C, privat 0x7F4584DA http://wwwkeys.de.pgp.net
From | Date | Subject | |
---|---|---|---|
Next Message | James Im | 2007-01-17 17:27:42 | Re: Controlling memory of session |
Previous Message | Patrick Earl | 2007-01-17 17:13:39 | Re: GUID/UUID Support |