1、如果oracle连接数达到上限,使用plsql去连接oracle时会出现连不上的错误,典型报错为:

maximum number of processes (150) exceeded

2、重启linux机器(否则连不上),使用如下命令登录:

sqlplus / as sysdba

查看系统连接数上限:

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

oracle连接数上限修改

修改最大连接数为1000

alter system set processes=1000 scope=spfile;

相关文章:

  • 2021-09-14
  • 2021-05-20
  • 2021-08-17
  • 2022-02-13
  • 2021-08-24
  • 2021-12-31
  • 2022-12-23
猜你喜欢
  • 2022-02-02
  • 2022-12-23
  • 2022-02-22
  • 2022-12-23
  • 2022-01-24
  • 2021-07-06
  • 2022-12-23
相关资源
相似解决方案