首页 > 开发 > 综合 > 正文

捕捉运行很久的SQL

2024-07-21 02:40:13
字体:
来源:转载
供稿:网友

如何捕捉运行很久的SQL?

column username format a12
column opname format a16
column PRogress format a8

select username,sid,opname,
       round(sofar*100 / totalwork,0)  '%' as progress,
       time_remaining,sql_text
from v$session_longops , v$sql
where time_remaining <> 0
and sql_address = address
and sql_hash_value = hash_value
/

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表