생계/OERR
오라클 impdp 중 ORA-27037: unable to obtain file status
돌고래트레이너
2017. 9. 7. 13:55
반응형
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.


반응형