일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
Tags
- oracle hugepage
- oracle SCN
- oracle account_status expired
- ora-28040: no matching authentication protocol
- window에서 linux로 scp 하는 방법
- ORA-00020
- oracle system lock
- 오라클
- window scp
- sqlnet.allowed_logon_version_server=8
- oracle sqlnet.ora
- SSMS
- oracleasm
- Oracle Database
- ora-39083 ora-00439
- ora-28002: the password will expire within 7 days
- oracle
- oracle 테스트 데이터
- oracle dba_profile password_life_time
- oracle pdb
- window pscp
- oracle awr
- supplemental log 활성화
- oracle tde
- mssql database 삭제
- oracle install
- sqlnet.allowed_logon_version_client=8
- SQL Server
- MSSQL
- Oracle RAC
Archives
- Today
- Total
신문지한장
[Error] ORA-00020: maximum number of processes (500) exceeded 본문
Oracle/Error Messages
[Error] ORA-00020: maximum number of processes (500) exceeded
신문지한장 2024. 9. 5. 10:48ORA-00020: maximum number of processes (500) exceeded
ORA-20 errors will not be written to the alert log for
the next minute. Please look at trace files to see all
the ORA-20 errors.
1. 프로세스 수 증가
ALTER SYSTEM SET processes = 1000 SCOPE=SPFILE;
2. 현재 세션 kill
select 'alter system kill session ' || ''''|| sid || '' || ',' || ''|| serial# || '''' ||';' from v$session;
-- 특정 sid만 삭제 할 경우
select 'ALTER SYSTEM KILL SESSION'''||SID||','||SERIAL#||''';'
from v$session
where sid='&1';
'Oracle > Error Messages' 카테고리의 다른 글
[Error] ORA-13541: system moving window baseline size (691200) greater than retention (604800) (0) | 2024.11.06 |
---|---|
[Error] ORA-39001 ORA-39200 ORA-02019 (0) | 2024.09.05 |
[Error] ORA-27054 (0) | 2024.08.26 |
ORA-00700 ORA-48209 ORA-48122 ORA-48126 (0) | 2024.08.26 |
[DBT-05802] Creating password file on diskgroup (DATA) (0) | 2024.05.09 |