Oracle process和sessions 解释

session:

Because every login requires a session, this parameter effectively determines the maximum number of concurrent users in the system. You should always set this parameter explicitly to a value equivalent to your estimate of the maximum number of concurrent users, plus the number of background processes, plus approximately 10% for recursive sessions.

12c (1.5 * PROCESSES) + 22

ALTER SYstem can be used in a PDB only to change the value of the SESSIONS parameter for that PDB. (仅限在PDB中修改)

For a CDB, the root container's SESSIONS parameter specifies the total number of sessions for the database.
the SESSIONS parameter does not count recursive sessions and hence does not require the 10% adjustment.

process --- 针对的操作系统进程(这里不做详述,专属和共享模式),而session是db层,两个概念不同。

这里涉及到的试图有:(其中概念可以查看官档)

gv$session
gv$process
v$resource_limit
v$license

---这里有个捷径提醒下,修改这个参数一般人会重启cdb,但是其实可以在某个节点修改sessions,然后shutdown immediate(当然要快速生效也可以shutdown abort)其中一个cdb节点,然后startup,同样可以生效,但是记得要在把这个节点运行的service要start。

相关文章

这篇文章主要介绍“hive和mysql的区别是什么”,在日常操作中...
这篇“MySQL数据库如何改名”文章的知识点大部分人都不太理解...
这篇文章主要介绍“mysql版本查询命令是什么”的相关知识,小...
本篇内容介绍了“mysql怎么修改字段的内容”的有关知识,在实...
这篇文章主要讲解了“mysql怎么删除unique约束”,文中的讲解...
今天小编给大家分享一下mysql怎么查询不为空的字段的相关知识...