SQL from shell script - Mailing list pgsql-novice

From sarlav kumar
Subject SQL from shell script
Date
Msg-id 20050114183623.27104.qmail@web51306.mail.yahoo.com
Whole thread Raw
Responses Re: SQL from shell script
List pgsql-novice
Hi All,
 
I have the following statements in my shell script:
 
echo $PGPASSWORD | psql -U $USER -h $HOST -d $DBNAME -c "select * from affiliate_batch where tx_dt < ' "$DATE" ' order by id; " > $1$DATE.1.txt
 
echo $PGPASSWORD | psql -U $USER -h $HOST -d $DBNAME -c "select * from affiliate_event where dt< ' "$DATE " ' order by id; " > $1$DATE.2.txt
 
I will be adding more statements in this file. I would like to know if there is a way to avoid specifying the connection everytime. I would like to make the connection once and then execute the set of SQL statements and disconnect from the database.
 
It would be great if someone could help me.
 
Thanks!
Saranya

__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com

pgsql-novice by date:

Previous
From: John DeSoi
Date:
Subject: Re: N/A
Next
From: Sean Davis
Date:
Subject: Re: SQL from shell script