Oracle 56

[Oracle] rman datafile, archivelog File format (파일 명명) %

// rman set newname format (파일 명명법)%b:  Specifies the file name without the directory that it locates.  %N:  Specifies the tablespace name %f:  Specifies the absolute file number of a datafile %I:  Specifies DBID %U:  Specifies system generated unique filename // as a following format:  data-D-%d_id-%I_TS-%N_FNO-%f  // archivelog log_archive_format%s: log sequence number%S: log sequence number, ..

Oracle 2022.06.16

[Oracle] bbed (block edit) ORA-01578: ORACLE data block corrupted

// ORA-01578: ORACLE data block corrupted (file # 4, block # 140)// ORA-01110: data file 4: '/u01/app/oracle/oradata/ORADB/users01.dbf'// bbed 명령어는 10.2.0.5 에 생겼던 기능으로 버전이 상향되며 오라클에서 더 이상 지원하지 않는다. 따라서, 해당 명령어를 사용 후 연쇄적으로 발생하는 에러에 대해서는 오라클에서 지원받을 수 없다.//해당 명령어를 사용하고 싶다면 개인적으로 아래 파일을 구해야한다. 구한 파일의 지원os와 설치한(적용할) os가 다르면 명령어 컴파일이 안될 수 있음.  // bbed file (linux_x64) https://chess-drive.tistory.com/1..

Oracle 2022.06.15

[Oracle] ORA-00600: internal error code, arguments: [729], [80], [space leak]

// ORA-04030: out of process memory Tips// ORA-00600: internal error code, arguments: [729], [80], [space leak], [], [], [], [], [], [], [], [], []// 2번째 argument가 space leak 발생한 chunk의 사이즈를 나타내줌. // 에러 원인heap에 존재하는 chunk 중 free할 수 있는 chunk가 존재하지 않아 memory leak 발생. // 해결 방안- Increase pga_aggregate_target- Decrease sort_area_size and/or hash_area_size- Move to multi-threaded server (a.k.a. MTS or..

Oracle 2022.03.18