Re: How to log outputs from pl/pgsql into a file ? - Mailing list pgsql-sql

From Jie Liang
Subject Re: How to log outputs from pl/pgsql into a file ?
Date
Msg-id 7C760DAA511DC74B99E7D22189F786F101BF2036@MAIL01.stbernard.com
Whole thread Raw
In response to How to log outputs from pl/pgsql into a file ?  (Stéphane DEWITTE <stephane@smeso.fr>)
List pgsql-sql
You might try:

./myshell 2>&1|tee test.log

Jie Liang


-----Original Message-----
From: Stéphane DEWITTE [mailto:stephane@smeso.fr]
Sent: Friday, April 19, 2002 7:40 AM
To: pgsql-sql@postgresql.org
Subject: [SQL] How to log outputs from pl/pgsql into a file ?


Hi everybody.

I'm working un Linux SuSe7.0, Postgres 7.2 compiled from sources.

I have a function in PL/pgSQL and I have to write some infos on screen. For
that I use RAISE NOTICE ''Number %'',my_number;

It works fine on screen, but now I want to log it on a different file each
time (not the pog log). I've tried to make a shell (myshell) that calls the
script
psql mybase << EOF
select my_func();
EOF

and I make myshell > test.log

I only have the retrun of my function, and not the 'raise' that only appears
on screen. Idem if my shell is

psql mybase << EOF
\o test.log
select my_func();
EOF

and I have the same result. I guess it is possible ti have outputs written
into a file (like "spool file" in SqlPlus for Oracle) but I didn't find
anything on documentation for PL/pgSQL. Can I use raise notice for that ?
And how ? And what else can I use ?

Thanks a lot.

Regards,
Stephane.


---------------------------(end of broadcast)---------------------------
TIP 6: Have you searched our list archives?

http://archives.postgresql.org


pgsql-sql by date:

Previous
From: Stephan Szabo
Date:
Subject: Re: how to get index scan at work?
Next
From: Matthew Hagerty
Date:
Subject: Query Praise!