Oracle alert.log 에 갑자기 파라미터 및 패치 정보가 뜨는 경우가 있다.
대부분 DB가 기동되면서 파라미터 및 패치 정보가 alert.log에 발생하는 경우가 대부분이여서 DB가 재기동 되어서 놀란 적이 있는데 이경우는 log.xml 을 분할 하면서 DB profile & patch 정보를 저장하려고 하면서 발생한다.
<alert.log 내용>
Creating new log segment:
Oracle Database 12c Enterprise Edition Release 12.2.0.1.0 - 64bit Production.
ORACLE_HOME: /oracle/product/12.2.0.1/db
System name: Linux
Node name: test_server
Release: 3.10.0-693.el7.x86_64
Version: #1 SMP Thu Jul 6 19:56:57 EDT 2017
Machine: x86_64
Using parameter settings in client-side pfile
System parameters with non-default values:
processes = 2000
_disable_system_state = 10
sga_max_size = 40512M
allow_group_access_to_sga= TRUE
shared_pool_size = 6208M
large_pool_size = 3136M
java_pool_size = 512M
streams_pool_size = 128M
_highest_priority_processes= "VKTM|LG*|LMS*"
nls_language = "AMERICAN"
nls_territory = "AMERICA"
backup_tape_io_slaves = TRUE
resource_manager_plan = "FORCE:"
_ges_direct_free = TRUE
_dlm_stats_collect = 0
sga_target = 0
_memory_imm_mode_without_autosga= FALSE
alert.log에 정보를 띄우지 않으려면 아래의 파라미터 수정이 필요하다.
(Doc ID 2377750.1)
_log_segment_dump_parameter=FALSE
_log_segment_dump_patch=FALSE
ex>
alter system set "_log_segment_dump_parameter"=FALSE;
alter system set "_log_segment_dump_patch"=FALSE;
'oracle' 카테고리의 다른 글
[ORACLE] ORACLE SQL output HTML format (0) | 2022.06.29 |
---|---|
[ORACLE] BIND 변수 확인 방법 (0) | 2022.06.29 |
CTF(Conection Time Failover) VS TAF(Transparent Application Failover) (0) | 2022.06.28 |
[ORACLE] ORA-12012: error on auto execute of job "SYS"."PMO_DEFERRED_GIDX_MAINT_JOB" (0) | 2022.06.24 |
Partition table auto drop procdure (0) | 2022.06.24 |