Re: [despammed] Insert psql commands inside a script - Mailing list pgsql-sql

From Geoffrey
Subject Re: [despammed] Insert psql commands inside a script
Date
Msg-id 426A3C74.8040309@3times25.net
Whole thread Raw
In response to Re: [despammed] Insert psql commands inside a script  (Andreas Kretschmer <akretschmer@despammed.com>)
Responses Re: [despammed] Insert psql commands inside a script  (Michael Fuhr <mike@fuhr.org>)
List pgsql-sql
Andreas Kretschmer wrote:
> am  21.04.2005, um 17:19:23 -0500 mailte Letnes, David G. folgendes:
> 
>>  I have used the psql -f /tmp/SelectCommands.sql before, but now I want
>>to put the sql statement right in the shell script.  I haven't had any
>>luck.  Is there a command I can use that will not point to a file for
>>the sql instructions but right on the same line.  I use very short psql
>>commands and would like to do it all with 1 file.
> 
> 
> echo "select bla from fasel" | psql -U <username> database
> 
> You can also use here documents, shell-variables and so on.

Or you can do the following:

psql database < sqlcode

where sqlcode contains your sql.

-- 
Until later, Geoffrey


pgsql-sql by date:

Previous
From: "Sean Davis"
Date:
Subject: Re: Looking for a way to sum integer arrays....
Next
From: Michael Fuhr
Date:
Subject: Re: [despammed] Insert psql commands inside a script