1. 首页
  2. 行业
  3. 物流
  4. oracle 会话 死锁 执行sql 执行job的方法

oracle 会话 死锁 执行sql 执行job的方法

上传者: 2020-12-17 13:46:53上传 PDF文件 46.14KB 热度 29次
//根据用户分组会话 select t.USERNAME,count(*) from v$session t group by t.USERNAME //查找某一用户正在执行的sql_id值 select * from v$session t where t.USERNAME = 'BUDGET' and t.SQL_ID is not null //查找对应sql_id的对应sql语句 select m.SQL_TEXT from v$session t , v$sqlarea m where t.USERNAME ='BUDGET' and t.sql_id = m.SQL_ID // s
用户评论