alertlog 에 지속적으로 해당 로그 발생

ORA-00600 [KCBTSE_ENCDEC_TBSBLK_11]

 

검토한 여러가지 방법 등이 있었으나 내리고 바로 Patch 할수 없는 상황이었으므로..

- 조치방법

Oracle 19.21 버전 사용중임.

alter system set "_bug30316897_allow_fallback_to_dbkey" =TRUE;  <---- 메모리단 적용됨

 

적용직후 바로 alertlog 에 해당 메세지 사라짐.

 

- 참조 MOS 노트

ORA-600 [kcbtse_encdec_tbsblk_11] Errors if wrongly Encrypted Blocks Detected in DB (Doc ID 2986072.1)
RMAN: ORA-00600 [KCBTSE_ENCDEC_TBSBLK_1] during RMAN backup for Non-Encrypted datafile (Doc ID 2832781.1)
19c DBUA TDE-Encrypted Database Upgrade Fails During Timezone Step with ORA-600 [kcbtse_encdec_tbsblk_11] in alert.log (Doc ID 2888229.1)

Posted by pat98

set linesize window
set pagesize 100
col file_type format a20
col path format a50
col "USED%" for 990.9
define dirlv=2
select
  file_type,
  count(*) files,
  round(sum(space)/1024/1024) mbytes,
  round(sum(space)/1024/1024/dgmsize*100, 1) "USED%",
  path
from
  ( select
      concat('+'||gname, replace(sys_connect_by_path(case when level < &dirlv then '/'||aname else '' end, '|'), '|', null)) path,
      file_type,
      space,
      gname,
      dgmsize
    from
      ( select b.name gname, a.name aname,
          a.reference_index rindex, a.parent_index pindex,
          c.type file_type, c.space,
          a.system_created, a.alias_directory,
          b.total_mb dgmsize
        from v$asm_alias a, v$asm_diskgroup b, v$asm_file c
        where a.group_number = b.group_number
          and a.group_number = c.group_number(+)
          and a.file_number = c.file_number(+)
          and a.file_incarnation = c.incarnation(+)
      )
    where
      connect_by_isleaf = 1 and alias_directory = 'N' 
      and not (system_created = 'N' and alias_directory = 'N') 
    start with (mod(pindex, power(2, 24))) = 0
    connect by prior rindex = pindex
  )
group by file_type, path, gname, dgmsize
order by gname, mbytes desc
;

Posted by pat98

02-14 00:03
Flag Counter
Yesterday
Today
Total

글 보관함

최근에 올라온 글

달력

 « |  » 2025.2
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

최근에 달린 댓글