Oracle 查看连接数,修改连接数,最大并发数

    --查看连接数  
    select count(*) from v$process  
       
    --查看充许链接数  
    select value from v$parameter where name='processes'  
       
    --查看最大并发数  
    select * from v$license  

猜你喜欢

转载自zliguo.iteye.com/blog/2176622