Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- ST_InvDistWeight4ma
- 공주페이
- idw
- PostgreSQL
- HP스펙터x360
- posgresql
- postgis
- 테이블 중복조회
- 테이블목록
- psql
- pygqis
- 테이블리턴
- HP스펙터
- 하위디렉토리
- postgrest
- qgis
- Python
- 순댓국밥
- table
- shape내려받기
- table비교
- posgtresql
- rc.local
- shp내려받기
- SQL
- 네이버클라우드
- Openlayers
- 데이터비교
- 와콤뱀부슬레이트
- tablewidget
Archives
- Today
- Total
오픈소스의 일상
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
'오픈소스 > PostgreSQL' 카테고리의 다른 글
특수문자 리스트 (0) | 2022.02.21 |
---|---|
PostgreSQL 테이블 목록 조회 (0) | 2022.02.15 |
PostgreSQL Fucntion 리턴값을 테이블 구조로 받기 (0) | 2022.01.26 |
#10. PostgRest 설치 및 확인 (0) | 2022.01.06 |
PostgreSQL 데이터 중복조회 (0) | 2018.11.23 |