Oracle Maximum number of connections

Source: Internet
Author: User
Tags sqlplus

1. View processes and Sessions parameters

sql> Show parameter Processes

NAME TYPE VALUE

db_writer_processes integer 1

gcs_server_processes integer 0

job_queue_processes integer

log_archive_max_processes integer 2

processes integer

sql> Show Parameter Sessions

NAME TYPE VALUE

license_max_sessions integer 0

license_sessions_warning integer 0

logmnr_max_persistent_sessions integer 1

Sessions Integer

shared_server_sessions integer

2. Modifying processes and Sessions values

sql> alter system set PROCESSES=300 Scope=spfile;

The system has changed.

sql> alter system set sessions=335 Scope=spfile;

The system has changed.

3. Modifying the processes and sessions values must restart the Oracle server to take effect

The number of connections to Oracle (sessions) is related to the number of processes in its parameter file (process), and their relationships are as follows:

sessions= (1.1*process+5)

pick (ii)

Query the number of connections to the current process of the database:

Select COUNT (*) from v$process;

to view the number of connections for the current session of the database:

Select COUNT (*) from v$session;

to view the number of concurrent connections for a database:

Select COUNT (*) from v$session where status= ' ACTIVE ';

to view the session established by the current database:

select Sid,serial#,username,program,machine,status from V$session;

Maximum number of connections allowed for query database:

Select value from v$parameter where name = ' processes ';

or: Show parameter processes;

to modify the maximum number of connections allowed for a database:

alter system SET processes = $ scope = SPFile;

(you need to restart the database to make changes to the number of connections)

To Restart the database:

shutdown immediate;

startup;

See which users are currently working with the data:

Select osuser,a.username,cpu_time/executions/1000000 ' s ', sql_fulltext,machine from v$session A,v$sqlarea b where a . sql_address = b.address ORDER BY cpu_time/executions Desc;

Note: UNIX 1 users session corresponds to an operating system process, while Windows embodies the thread.

Start Oracle

su-oracle

sqlplus system/pwd as SYSDBA//Enter SQL

Startup //Start Database

lsnrctl start//boot monitoring

sqlplus "/as sysdba"

shutdown immediate;

startup Mount;

ALTER DATABASE open;

Oracle Maximum number of connections

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.