반응형 ERROR: current transaction is aborted1 [PostgreSQL] ERROR: current transaction is aborted 에러 해결 법 DBMS: PostgreSQL 14.9 - BEGIN 명령을 통한 트랜잭션 진행 중 ERROR 발생 시 이후 모든 명령은 에러 발생함 ERROR: current transaction is aborted, commands ignored until end of transaction block - commit 또는 rollback 후 정상 작동 [목차여기] 테스트 테이블 생성 postgres=# create table t1 as select * from pg_tables ; SELECT 66 postgres=# postgres=# select count(*) from t1 ; count ------- 66 (1 row) 테스트 postgresql은 기본 autocommit 으로 작동합니다. 수동으로 begin.. 2024. 4. 7. 이전 1 다음 반응형