Thread: batch file

batch file

From
Milen
Date:
Hi all!

I want to execute several SQL statements one after another.
Does anyone know if it is possible to create something like a "batch file"
which contains all SQL commands I want.
Thank you in advance!

Best regards:
Milen

Re: batch file

From
harrold@sage.che.pitt.edu
Date:
On Fri, 25 May 2001, Milen wrote:

> Hi all!
>
> I want to execute several SQL statements one after another.
> Does anyone know if it is possible to create something like a "batch file"
> which contains all SQL commands I want.
> Thank you in advance!
>
> Best regards:
> Milen
>

yeah you create a text file that has contains the commands just as you
would type them in the psql environment, making sure to end each command
with a ';'.

then at the console type:

psql db_name < batchfile

--
john


Re: batch file

From
Nabil Sayegh
Date:
harrold@sage.che.pitt.edu wrote:
> psql db_name < batchfile

or

psql db_name -f batchfile

cu
--
 Nabil Sayegh