查看当前License情况 SQLgt; show parameter license;NAME TYPE VALUE---------------
查看当前license情况
SQL> show parameter license;
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
license_max_sessions integer 0
license_max_users integer 0
license_sessions_warning integer 0
查看Oracle的最大并发数限制,可是查看v$license视图
v$license视图:
里面记录了Oracle最大的并发数以及当前用户的连接数,
官方文档有如下描述:
This view contains information about license limits.
ColumnDatatypeDescription
SESSIONS_MAX
NUMBER
Maximum number of concurrent user sessions allowed for the instance
SESSIONS_WARNING
NUMBER
Warning limit for concurrent user sessions for the instance
方科网络ERP图文店II版为仿代码站独立研发的网络版ERP销售程序。本本版本为方科网络ERP图文店版的简化版,去除了部分不同用的功能,使得系统更加精炼实用。考虑到图文店的特殊情况,本系统并未制作出入库功能,而是将销售作为重头,使用本系统,可以有效解决大型图文店员工多,换班数量多,订单混杂不清的情况。下单、取件、结算分别记录操作人员,真正做到订单全程跟踪!无限用户级别,不同的用户级别可以设置不同的价
SESSIONS_CURRENT
NUMBER
Current number of concurrent user sessions
SESSIONS_HIGHWATER
NUMBER
Highest number of concurrent user sessions since the instance started
USERS_MAX
NUMBER
Maximum number of named users allowed for the database
其实,该试图中的SESSIONS_CURRENT就等于select count(*) from v$session where TYPE = 'USER'
show parameter license_max_sessions //查看最大并发数,如果是0,则默认是无限制,但如果在
在初始化文件里说明了,,就以初始化文件为主










