v$transaction——列出系统的活动事务处理!

首先用u1用户构造一个事务:

SQL> show user
USER 为 "U1"
SQL> update t1 set id = 1 where name = 'a';

已更新 1 行。

用sys用户查看:

SQL> show user
USER 为 "SYS"
SQL> select s.username,t.status from v$transaction t,v$session s where t.addr = s.taddr;

USERNAME                       STATUS
------------------------------ ----------------
U1                             ACTIVE

你可能感兴趣的:(sql,session,活动)