查询系统正在运行的SQL语句:
select a.program, b.spid, c.sql_text from v$session a, v$process b, v$sqlarea c where a.paddr = b.addr and a.sql_hash_value = c.hash_value and a.username is not null;
查询系统正在运行的SQL语句
原文:http://www.cnblogs.com/wuwei312/p/6393174.html