On Wed, 2011-02-02 at 12:49 -0800, Bosco Rama wrote: > Wim Bertels wrote: > > > > --user2 > > SET SESSION AUTHORIZATION user2; > > \pset format latex > > \echo ECHO queries > > \o report/test_user2.tex > > \i structure/test_user2.sql > > " > > > > This doenst seem to work, > > as the ECHO queries output isnt written to the file (test_user2.tex) > > Actions are performed as they are encountered so put the \echo *after* the > \o, like this: > > SET SESSION AUTHORIZATION user2; > \pset format latex > \o report/test_user2.tex > \echo ECHO queries > \i structure/test_user2.sql Hallo Bosco, i tried changing that, but it doesnt seem to work (the echo only affects the psql cmdl, but is not written to /o file) i am using a buil script, eg psql -f init/test_build_psql.sql dev or in psql> \i init/test_build_psql.sql with the contents of test_build_psql.sql being: " \set client_min_messages warning \set log_error_verbosity terse SET SESSION AUTHORIZATION user1; \i init/test_create.sql \i init/test_insert.sql SET SESSION AUTHORIZATION userX; \i init/test_grant.sql \i functions/Trigger_functions.sql SET SEARCH_PATH TO s1, s2, s3, s4; --functions report \pset format html \o report/functions_report.html \df --test student \o report/test_student.html \set ECHO queries \i init/test_student_try_out.sql --undo some settings \pset format aligned \set ECHO \o \set client_min_messages notice \set log_error_verbosity verbose " mvg, Wim > > HTH, > Bosco. > -- Sent via pgsql-general mailing list (pgsql-general@xxxxxxxxxxxxxx) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-general