Maximum concurrency and license of Oracle

Source: Internet
Author: User

View the current license status

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

View the maximum number of concurrent connections in Oracle, but view the V $ license view.

V $ license View:

It records the maximum concurrency of Oracle and the number of connections of the current user,
The official documents are described as follows:

This view contains information about license limits.

Column Datatype Description

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

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

In fact, the sessions_current in this attempt is equivalent to select count (*) from V $ session where type = 'user'


Show parameter license_max_sessions // you can view the maximum number of concurrent threads. If it is 0, the default value is unlimited.
As described in the initialization file, the initialization file is the main

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.