Find autocommit setting in postgres
Bydefault autocommit is set to on in postgres. You can check the setting .
postgresql configurationintermediate
by PostgreSQL
28 views
Bydefault autocommit is set to on in postgres. You can check the setting .
123456
postgres#
\echo :AUTOCOMMIT;
ON;
At session level you can change the autocommit setting :
postgres#
\set AUTOCOMMIT OFFPlease to add comments
No comments yet. Be the first to comment!