• 查看pga使用


    select s.username username,s.serial# serial,se.sid,n.name,
           max(se.value) maxmem
    from v$sesstat se,
         v$statname n,
         v$session s
    where n.statistic# = se.statistic#
    and s.sid=se.sid
    and s.username is not null
    group by n.name,se.sid,s.username,s.serial#
    order by 2
  • 相关阅读:
    Leon-ai on WSL
    自动化测试工具
    创建自己的Spring Boot Starter
    Spring Boot内嵌Tomcat session超时问题
    Spring Boot
    Spring Cloud
    Socket编程之Tomcat模拟_采坑汇总
    访问者模式
    模版模式
    策略模式
  • 原文地址:https://www.cnblogs.com/czjie/p/2251939.html
Copyright © 2020-2023  润新知