일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- oracle 파티션 datapump
- oracle account_status expired
- mssql database 삭제
- Oracle RAC
- sql user 생성
- partition_options=merge
- oracle system lock
- oracle SCN
- ORA-00020
- create role
- oracle 테스트 데이터
- 오라클
- ora-00439: feature not enabled: partitioning
- oracle
- oracle role 삭제
- oracle dba_profile password_life_time
- oracle supplemental
- oracle tde
- Oracle Database
- MSSQL
- oracle install
- ora-28002: the password will expire within 7 days
- oracleasm
- SQL Server
- SSMS
- oracle awr
- oracle pdb
- oracle datapump
- supplemental log 활성화
- ora-39083 ora-00439
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 |