当前位置:网站首页>Modify the number of Oracle connections
Modify the number of Oracle connections
2022-06-26 04:19:00 【Fat sb】
sqlplus / as sysdba
Number of connections to the current database process
select count(1) from v$process;
Number of connections for the current session
select count(1) from v$session;
See the maximum number of connections
select value from v$parameter where name ='processes';
Modify the maximum number of connections to 3000
alter system set processes = 3000 scope = spfile;
Restart the database
shutdown immediate; startup;
Check whether the maximum number of connections has been modified
show parameter processes;

View the current connection consumption
select b.MACHINE, b.PROGRAM, b.USERNAME, count(*) from v$process a, v$session b where a.ADDR = b.PADDR and b.USERNAME is not null group by b.MACHINE, b.PROGRAM, b.USERNAME order by count(*) desc;
边栏推荐
- Report on the "fourteenth five year plan" and future development direction of global and Chinese indoor vertical farms from 2022 to 2028
- [Qunhui] no port access (reverse proxy + intranet penetration)
- 使用Jsoup提取接口中的图片
- Detailed explanation of widget construction process of fluent
- Unity mobile game performance optimization spectrum CPU time-consuming optimization divided by engine modules
- Minecraft 1.16.5 生化8 模组 1.9版本 1.18版本同步
- 力扣 515. 在每个树行中找最大值
- Nailing open platform - applet development practice (nailing applet client)
- Lua grammar explanation
- What are the advantages and risks of paper gold investment
猜你喜欢

Chrome page recording and playback function

【QT】对话框dialog

Spark - 一文搞懂 parquet

Judge the same value of two sets 𞓜 different values

2021 year end summary

Minecraft 1.16.5 生化8 模组 1.9版本 1.18版本同步

Ten important basic principles of software debugging and testing

Nailing open platform - applet development practice (nailing applet server side)

修改Oracle连接数

Use soapUI to access the corresponding ESB project
随机推荐
Getting started with flask
Review of number theory
SQL related knowledge - DQL
MySQL enable logbin in Qunhui docker
Etcd watch principle
Sorting out the knowledge points of the renderview renderobject parentdata of the shuttle
OSS CDN alicloud configuration method
Nailing open platform - applet development practice (nailing applet server side)
线程同步之条件变量
微软禁止俄用户下载安装Win10/11
ipvs之ipvs0网卡
Zhubo Huangyu: all the precious metals you want to know are here
Judge the same value of two sets 𞓜 different values
R language and machine learning
[geek challenge 2019] rce me
線程同步之讀寫鎖
[Qunhui] no port access (reverse proxy + intranet penetration)
[Qunhui] Internet access + custom port
[Qunhui] import certificate
[QT] dialog box