1. 트랜젝션을 발생시키는 session id 찾는다
select * from V$TRANSACTION
2. SID, 시리얼번호, SQL번호
select sid, serial#, sql_id, PREV_SQL_ID from v$session where sid = :sess_id
3. 장시간 connection 되어 있는 쿼리를 확인 한다.
select * from v$sqltext where sql_id= :PREV_SQL_ID or :sql_id
4. kill 세션
alter system kill session( SID, SERIAL);
'Data Layter > TIBERO' 카테고리의 다른 글
DB 날려먹었는데, sys 스키마 하위 데이터가 없을때 (0) | 2022.11.11 |
---|---|
JDBC-5074 (0) | 2021.11.16 |
5072: Failure converting NUMBER to or from a native type. (0) | 2020.08.10 |
pk unique index 삭제 (0) | 2020.07.31 |
Tibero_tibero is stopped or disabled. Please confirm the service state or event logs (Application / System) (0) | 2020.02.21 |