Lock 확인
select
t.relname,l.locktype,page,virtualtransaction,pid,mode,granted
from pg_locks l, pg_stat_all_tables t
where l.relation=t.relid
order by relation asc;
Lock 풀기
-- 숫자는 Lock 확인의 pid
select pg_cancel_backend(12118); -- 먼저 해 보고
select pg_terminate_backend(20782); -- 안 되면 얘를 실행한다.
'SQL > postgresql' 카테고리의 다른 글
[postgresql] 테이블 2개 update / update 여러 개 / update 여러개 / select해서 update / 서브쿼리 update / subquery update (0) | 2021.11.17 |
---|---|
[postgresql] eclipse, mybatis 사용 round does not exist (0) | 2021.11.11 |
[postgresql] uuid 생성 함수 (0) | 2021.08.26 |