Skip to content

Commit 5df813c

Browse files
authored
Create automatic-transaction-rollback-v$session.sql
1 parent 60d50e4 commit 5df813c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
REM Script for 23c: automatic-transaction-rollback-v$session.sql
2+
REM Check transactions in V$SESSION with columns EVENT, SECONDS_IN_WAIT and BLOCKING_SESSION to analyze the locking situation.
3+
4+
col event format a35
5+
select sid, event, seconds_in_wait, blocking_session      
6+
from v$session where  event like '%enq%';

0 commit comments

Comments
 (0)