postgresql - postgres equivilent of oracle sqlplus "set echo on" -
is there equivalent in postgresql of oracle sqlplus "set echo on" can batch input statements echoed in output?
i have large file input statements in has few errors when run it. having difficulty finding statement produced error because psql reporting error - not statement generated error.
you need pass -a
(or --echo-all
) argument psql
. it's described @ https://www.postgresql.org/docs/current/static/app-psql.html under options.
Comments
Post a Comment