Oracle 56

[Oracle] ip 및 interface명 변경

// public interface : eth6 => eth7, ip : 192.168.0.0 => 192.168.1.0// private interface : eth 5 => eth6, ip : 168.10.0.0 => 168.10.1.0// 01. oifcfg ocr에 interface 이름 변경// 확인# oifcfg getifeth5  168.10.0.0  global  cluster_interconnecteth6  192.168.0.0  global  public// 변경// public , 필요시 ip 대역도 변경# oifcfg setif -global eth7/192.168.1.0:public// private , 필요시 ip 대역도 변경# oifcfg setif -global eth6/16..

Oracle 2021.07.25

[Oracle] 마이그레이션 전 Object 생성 DDL 구문 확인 script

-- The script for check Object creation DDL before MigrationSET trimspool ONSET heading off;SET feedback off;SET linesize 300SET echo off;SET pages 10000;SET long 90000;COL DDL FORMAT A10000execute DBMS_METADATA.SET_TRANSFORM_PARAM(DBMS_METADATA.SESSION_TRANSFORM,'SQLTERMINATOR',true);EXECUTE DBMS_METADATA.SET_TRANSFORM_PARAM(DBMS_METADATA.SESSION_TRANSFORM,'STORAGE',false);EXECUTE DBMS_METADATA..

Oracle 2021.06.07

[Oracle] ORA-48128: opening of a symbolic link is disallowed

// 19c 에서 impdp, expdp 시 발생하는 에러 ORA-39001: invalid argument value ORA-39000: bad dump file specification ORA-39155: error expanding dump file name "c:\Users\Administrator\dp_conv\conv_metadmp" ORA-48128: opening of a symbolic link is disallowed SQL> alter system set "_disable_directory_link_check"=TRUE scope=spfile; SQL> alter system set "_kolfuseslf"=TRUE scope=spfile; SQL> shutdown immediate;..

Oracle 2021.04.26

[Oracle] ORA-39352: Wrong number of TRANSPORT_DATAFILES

// ORA-39352: Wrong number of TRANSPORT_DATAFILES impdp system/***** directory=dp_conv dumpfile=convdmp transport_datafiles='+DATA/ORADB/DATAFILE/conv_test01dbf'Connected to: Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production ORA-39002: invalid operation ORA-39352: Wrong number of TRANSPORT_DATAFILES specified: expected 1, received 2 # 옵션추가  metrics=n exclude=statistics

Oracle 2021.04.26

[Oracle] Error in invoking target 'agent nmhs' of makefile

Exception String: Error in invoking target 'agent nmhs' of makefile '/u01/app/oracle/product/11.2.0/db_1/sysman/lib/ins_emagent.mk'. See '/u01/app/oraInventory/logs/installActions2021-04-19_03-13-59PM.log' for details  // 시스템상에 Oracle 11g R2를 Install하는 동안 “Error in invoking target 'agent nmhs' of makefile - during 11g Installation”과 같은 오류가 보고되는 경우 그냥 무시를 하고 진행해도 되지만 “$ emctl status dbconsole” 또는..

Oracle 2021.04.19

[Oracle] Oracle grid rac 설치 시 root.sh 에러 (CRS-4046, CRS-4000, CLSRSC-331)

# root.sh error when oracle grid rac installation2021/03/12 10:25:54 CLSRSC-594: Executing installation step 9 of 19: 'ConfigOLR'. PROCL-00041: Oracle Local Registry is incorrectly configured   clsu-00600: Internal Error [(:CLSUG00122:)] [5] [OLR error] [41] [Error retrieving olrconfig_loc property.] CRS-4046: Invalid Oracle Clusterware configuration. CRS-4000: Command Create failed, or complete..

Oracle 2021.03.12

[Oracle] ORA-19909: datafile 1 belongs to an orphan incarnation

RMAN-00571: =========================================================== RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS =============== RMAN-00571: =========================================================== RMAN-03002: failure of recover command at 03/08/2021 05:02:07 ORA-00283: recovery session canceled due to errors RMAN-11003: failure during parse/execution of SQL statement: alter da..

Oracle 2021.03.09