Answers for "open cursors in oracle"

SQL
0

open cursors in oracle

select b.sid, a.username, b.value Cursores_Abiertos
      from v$session a,
           v$sesstat b,
           v$statname c
      where c.name in ('opened cursors current')
      and   b.statistic# = c.statistic#
      and   a.sid = b.sid 
      and   a.username is not null
      and   b.value >0
      order by 3
Posted by: Guest on February-28-2022

Code answers related to "SQL"

Browse Popular Code Answers by Language