I am using postgres 9.5. How to check whether auto power on or off? I tried SHOW AUTOCOMMIT
, where I got ERROR: unrecognized configuration parameter "autocommit"
, then I did \set autocommit off
, and then SHOW AUTOCOMMIT
gave me empty output. How to determine if auto-commit is on or off? Also can I disconnect it in / after the database in sql file?
source share