您的位置:首页 > 数据库 > Oracle

在 Oracle 中查看正在运行中语句

2016-09-02 10:36 169 查看
                                                                                                    

                                                                                                    在 Oracle 中查看正在运行中语句 

       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   and  a.username  is not null; 
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: