查询并显示连接 Oracle 的用户和用户的会话数量
select username usuario_oracle, count(username) numero_sesiones
from gv$session
group by username order by numero_sesiones desc;
本文来自博客园,作者:Iven_lin,转载请注明原文链接:https://www.cnblogs.com/ivenlin/p/18084369
select username usuario_oracle, count(username) numero_sesiones
from gv$session
group by username order by numero_sesiones desc;
本文来自博客园,作者:Iven_lin,转载请注明原文链接:https://www.cnblogs.com/ivenlin/p/18084369