오픈소스의 일상

Error : database ‘OOOOOO’ is being accessed by other users. DETAIL: There are 1 other session(s) using the database. 본문

오픈소스/PostgreSQL

Error : database ‘OOOOOO’ is being accessed by other users. DETAIL: There are 1 other session(s) using the database.

실버카미 2022. 5. 9. 13:51

즉. 세션을 물고 있어서 세션을 끊어야 한다.

postgres=# select pg_terminate_backend(pid)
postgres-# from pg_stat_activity
postgres-# where datname = 'OOOOOO';
 pg_terminate_backend
----------------------
 t
(1개 행)

그리고 데이터베이스를 삭제하면 잘 삭제된다. ㅎ

728x90