Sandy
Sandy

Reputation: 547

psql : load query from file and output psql messages to log file

I'm trying to find a one-liner to read query from external file and output psql NOTICEs to a log file. I tried :

psql -h host -d database -U username -f my_sql_file.sql > my_log_file.log

my_sql_file.sql has a multiline anonymous block like :

DO
$$
DECLARE
  stuff 
BEGIN
   RAISE NOTICE '--------- TEST ----------';
END;
$$

The log file outputs the first line of the file : "DO" and nothing else.

Upvotes: 0

Views: 959

Answers (1)

Laurenz Albe
Laurenz Albe

Reputation: 246788

The notice gets written to standard error, so redirect that too:

psql -h host -d database -U username -f my_sql_file.sql > my_log_file.log 2>&1

Upvotes: 1

Related Questions