From: | Achilleus Mantzios <achill(at)matrix(dot)gatewaynet(dot)com> |
---|---|
To: | "Michael Höller" <MichaelHoeller(at)t-online(dot)de> |
Cc: | pgsql-sql(at)postgresql(dot)org |
Subject: | Re: postgres on the comman line |
Date: | 2005-09-22 14:19:31 |
Message-ID: | Pine.LNX.4.44.0509221714020.22297-100000@matrix.gatewaynet.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-sql |
O "Michael Hφller" έγραψε στις Sep 22, 2005 :
>
>
> Hello,
>
> I like to automate a daily check and like to run select statement via
> cron but this seems to be more tricky than I thought....
>
> I tried the following:
> su postgres -c "select count(*) from TABLE where xxxxxx;"
Firstoff, 'select' is nor a unix command, neither
a postgresql program.
So you need something like:
su postgres -c "psql -c 'select count(*) from TABLE where xxxxxx'"
If you are the only one with an account on the machine
then you might try to tweak ~postgres/data/pg_hba.conf
and set method 'trust' for local access (no tcpip,psql without the -h
option) .
Also you could set env variables PGPASSWORD, PGUSER.
>
> I have the probelm that I am allways asked for the password - I did not
> find a way how to pass the password.
>
> Also I like to direct the result to a file, I assume I can do this via >
> but not haveing passed the first problem I did not check this.
>
> I am happy for every hint
>
> Thanks a lot
> Michael
>
>
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 4: Have you searched our list archives?
>
> http://archives.postgresql.org
>
--
-Achilleus
From | Date | Subject | |
---|---|---|---|
Next Message | Daryl Richter | 2005-09-22 14:45:34 | Re: Updating cidr column with network operator |
Previous Message | A. Kretschmer | 2005-09-22 14:15:06 | Re: postgres on the comman line |