impdp 할때 ora error
실제 파일이 존재함에도 발생.
구글링으로 parallel 구문 없애고 다시 실행하니 됨.
** 추가
paralle 실패한 이유 : RAC 환경에서 디렉토리 접근권한이 node1 에만 있다면 parallel 안먹힘.
impdp 시에 index 가 있으면 undo 사용량이 많아진다. index 를 unusuable 시키면 impdp 가 에러난다.
(alter index ... unusable 은 sqlplus 에서만 되네... 희안하네..)
-> index drop 후 재생성
- expdp parallel :
expdp id/pwd directory=dba_dir tables=A.B:partition dumpfile=dudump%U.dmp parallel=4 logfile=expdplog CONTENT=DATA_ONLY
- For Data Pump Export, the PARALLEL parameter value should be less than or equal to the number of output dump files.
- For Data Pump Import, the PARALLEL parameter value should not be much larger than the number of files in the dump file set.
반응형
'생계 > OERR' 카테고리의 다른 글
ORA-4023 에러 (0) | 2019.06.04 |
---|---|
ORA-27086: unable to lock file - already in use (0) | 2018.11.02 |
oracle silent 설치 중 에러 ins-35344 stack size (0) | 2018.05.03 |
PL/SQL: ORA-00942: table or view does not exist (0) | 2017.10.11 |
ORA-12838: cannot read/modify an object after modifying it in parallel (0) | 2017.09.21 |