Re: scripts in Postgres

Поиск
Список
Период
Сортировка
От Rolf Østvik
Тема Re: scripts in Postgres
Дата
Msg-id Xns964B59DC9D060rolfostvikjobbyahoon@200.46.204.72
обсуждение исходный текст
Ответ на scripts in Postgres  ("Craig Bryden" <postgresql@bryden.co.za>)
Ответы Re: scripts in Postgres  (Sean Davis <sdavis2@mail.nih.gov>)
Список pgsql-general
postgresql@bryden.co.za ("Craig Bryden") wrote in
news:001601c54f15$b9d32fe0$0200a8c0@amd2800:

> Hi Sean
>
> Thanks for that. Does psql work differently to pgAmin III's Query
> program? I have tried exactly what you showed me below, and it did not
> work. It seems like the script stops on first error, and the first
> error is that the table does not exist.
>

Could it be that it pgAdmin creates a transaction.
What happens if you set in some begin and commit.
(Just a wild suggestion, not tested in any way).
----------------------------------------
begin;
DROP TABLE tb_messages;
commit;
begin;
CREATE TABLE tb_messages (
....
);
commit;

--
Rolf

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

Предыдущее
От: "Dinesh Pandey"
Дата:
Сообщение: Re: unable to open editor.
Следующее
От: Richard Huxton
Дата:
Сообщение: Re: Tuning queries inside a function