Re: pl/pgsql create table

Поиск
Список
Период
Сортировка
От Bruce Momjian
Тема Re: pl/pgsql create table
Дата
Msg-id 200208271505.g7RF5KL23791@candle.pha.pa.us
обсуждение исходный текст
Ответ на pl/pgsql create table  (Masse Jacques <jacques.masse@bordeaux.cemagref.fr>)
Ответы Re: pl/pgsql create table  (Neil Conway <neilc@samurai.com>)
Re: pl/pgsql create table  (Alvaro Herrera <alvherre@atentus.com>)
Список pgsql-general
When referencing created/dropped tables in pl/pgsql, use EXECUTE to
prevent the table oid from being stored in function as precompiled.  It
is mentioned in the current FAQ.  The solution is for us to
automatically add EXECUTE somehow.

---------------------------------------------------------------------------

Masse Jacques wrote:
> I wonder when doing in a pg/pgsql function somewhat like
>
>     CREATE TABLE tmp as select foo;
>
> I have an error when tmp don't exist ( "table tmp don't exist" ...)
>
> and all is working well when there is a table tmp (no matter the structure
> of this table, the new table has a structure according to foo)
>
> Id with
>
>     DROP table tmp_site;
>     CREATE table tmp_site as select foo;
>
> Cheers
>  __________________________________________
> Jacques Mass?
> Tel. 33 (0)5 57 89 08 11 - Fax 33 (0)5 57 89 08 01
>
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 6: Have you searched our list archives?
>
> http://archives.postgresql.org
>

--
  Bruce Momjian                        |  http://candle.pha.pa.us
  pgman@candle.pha.pa.us               |  (610) 359-1001
  +  If your life is a hard drive,     |  13 Roberts Road
  +  Christ can be your backup.        |  Newtown Square, Pennsylvania 19073

В списке pgsql-general по дате отправления:

Предыдущее
От: Masse Jacques
Дата:
Сообщение: pl/pgsql create table
Следующее
От: "Ben-Nes Michael"
Дата:
Сообщение: Re: how to count string occurrence in column