Oracle最大并发数&License情况

2014-11-24 17:55:30 · 作者: · 浏览: 0

查看当前License情况


SQL> show parameter license;
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
license_max_sessions integer 0
license_max_users integer 0
license_sessions_warning integer 0



v$license视图:


里面记录了Oracle最大的并发数以及当前用户的连接数,
官方文档有如下描述:


This view contains information about license limits.




其实,该试图中的SESSIONS_CURRENT就等于select count(*) from v$session where TYPE = 'USER'



show parameter license_max_sessions //查看最大并发数,如果是0,则默认是无限制,但如果在
在初始化文件里说明了,就以初始化文件为主