当前位置:网站首页>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;
边栏推荐
- Computer network high frequency interview questions
- Parse JSON interface and insert it into the database in batch
- 微软禁止俄用户下载安装Win10/11
- pip 批量完全卸载包
- Li Kou 79 word search
- Oracle 数据泵导表
- Lua语法讲解
- Dix critères de base importants pour les essais de débogage de logiciels
- asp.net网页选择身份进行登录的简单代码,asp连接数据库,使用asp:Panel、asp:DropDownList控件
- Judge the same value of two sets 𞓜 different values
猜你喜欢
Minecraft 1.16.5 生化8 模组 1.9版本 1.18版本同步
捕获数据包(Wireshark)
After a test of 25K bytes, I really saw the basic ceiling
Microsoft prohibits Russian users from downloading and installing win10/11
Implementation of seven classes of BlockingQueue interface
Open source! Vitae model brushes the world's first again: the new coco human posture estimation model achieves the highest accuracy of 81.1ap
35岁程序员炒Luna 千万资产3天归零,网友:和赌博一样
Install dbeaver and connect Clickhouse
OSS CDN alicloud configuration method
1. foundation closing
随机推荐
Part 4: drawing quadrilateral
I/o virtualization technology - UIO framework
[Qunhui] this suite requires you to start PgSQL adapter service
Computer network high frequency interview questions
Which is the best embedded visual programming software? (introduction, evaluation and selection of visual programming platform) [scratch, mind+, mixly]
[learn FPGA programming from scratch -45]: vision chapter - integrated circuits help high-quality development in the digital era -2- market forecast
Upload script file (one sentence back door) WAF bypass (PHP)
MapReduce execution principle record
Clean up photo SCR virus / iframekill injection removal /iframekill removal photo scr
Nailing open platform - applet development practice (nailing applet client)
Wechat applet is bound to a dynamic array to implement a custom radio box (after clicking the button, disable the button and enable other buttons)
Getting started with flask
Knowledge of functions
2021 year end summary
CTF crypto (I) some simple encoding and encryption
Force buckle 515 Find the maximum value in each tree row
解析JSON接口并批量插入到数据库中
Unity mobile game performance optimization spectrum CPU time-consuming optimization divided by engine modules
VHDL设计
Read / write lock for thread synchronization