일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 pdb
- ORA-00020
- partition_options=merge
- ora-00439: feature not enabled: partitioning
- oracle system lock
- Oracle Database
- oracle
- oracle supplemental
- oracle 테스트 데이터
- SSMS
- oracle account_status expired
- 오라클
- oracle awr
- oracleasm
- MSSQL
- mssql database 삭제
- oracle install
- oracle dba_profile password_life_time
- oracle datapump
- SQL Server
- oracle SCN
- create role
- supplemental log 활성화
- ora-39083 ora-00439
- Oracle RAC
- oracle role 삭제
- ora-28002: the password will expire within 7 days
- oracle 파티션 datapump
- sql user 생성
- oracle tde
Archives
- Today
- Total
신문지한장
ORA-00020: maximum number of processes (500) exceeded 본문
ORA-00020: maximum number of processes (500) exceeded
ORA-20 errors will not be written to the alert log for
the ORA-20 errors.
원인 : 접속할 수 있는 프로세스의 수가 초과해서 생긴 오류 또는 프로그램에서 DB connect후 close를 해주지 않아서 오라클 프로세서의 수가 설정치를 초과한 경우
해결 방법 : 프로세스 수를 늘려 오류 해결
SLQ> select count(*) from v$process;
SQL> alter system set processes=200 scope=spfile;
참고 쿼리 : 현재 사용중인 세션 갯수 확인
Show parameter process
select * from v$resource_limit
where resource_name in ('processes', 'sessions', 'transactions');
'Oracle > Error Messages' 카테고리의 다른 글
ORA-00700 ORA-48209 ORA-48122 ORA-48126 (0) | 2024.08.26 |
---|---|
[DBT-05802] Creating password file on diskgroup (DATA) (0) | 2024.05.09 |
SHUTDOWN: Waiting for active calls to complete (0) | 2024.04.29 |
[Error] ORA-65096 : invalid common user or role name (1) | 2024.01.05 |
[Error] TNS-12535, TNS-00505 (0) | 2023.11.30 |