Oracle

게시글 보기
작성자 유건데이타 등록일 2015-05-18
제목 exporting oracle 8 to import to oracle 7
exporting oracle 8 to import to oracle 7
----------------------------------------

oracle 8의 내용을 oracle 7으로 import 시 다음과 같은 에러가 발생한다.

RC73:/mnt3/rctest73/server> imp exp_test/exp_test file=exp_test.dmp

Import: Release 7.3.4.1.0 - Production on Thu Apr 22 14:25:39 1999

Copyright (c) Oracle Corporation 1979, 1996. All rights reserved.

Connected to: Oracle7 Server Release 7.3.4.1.0 - Production
With the distributed, replication, parallel query and Spatial Data options
PL/SQL Release 2.3.4.1.0 - Production

IMP-00010: not a valid export file, header failed verification
IMP-00021: operating system error - error code (dec 2, hex 0x2)
IMP-00000: Import terminated unsuccessfully
RC73:/mnt3/rctest73/server>

이러한 문제는 오라클 7의 export dump file의 header 정보에서 오라클 8으로
버전이 올라오면서 추가적인 정보(eg. NCHAR character set)가 늘어나서 오라클 8
에서 export한 화일을 오라클 7의 imp utility가 읽어내지 못하는 데서 비롯된다고
할 수 있다.

이러한 문제점을 해결하기 위한 script가 $ORACLE_HOME/rdbms/admin/catexp7.sql임.
이것은 오라클 8 데이타베이스에 대해서 오라클 7대와 같은 style의 export/import
view들을 만들어 주는 역할을 한다.

이러한 view는 오라클 8의 object들은 볼 수 없으므로 오라클 7대와 같은 형태의
object들만 export될 수 있다.

다음은 export / import 하는 절차를 간단하게 보여주고 있다.

1. oracle 8 으로 접속하여 svrmgrl을 수행 후 connect internal을 해준 후 다음을
수행.

SVRMGR> @?/rdbms/admin/catexp7.sql

2. oracle 7 으로 접속하여 oracle 7의 export utility를 이용해서 export를
받는다.
이 때 oracle 8을 가리키는 tns name을 이용해서 export받는다.

exp exp_test/exp_test@ora80 file=exp_test.dmp

3. 이렇게 export받은 dump 화일을 이용해서 oracle 7으로 import를 받는다.

imp system/manager file=exp_test.dmp fromuser=exp_test touser=scott

4. oracle 8의 sys user(system이 아님)로 catexp.sql을 다시 수행해 주어서
export/import 관련 view들을 생성해 준다.

SVRMGR> @?/rdbms/admin/catexp.sql


Reference Documents
-------------------
Comment
등록된 코멘트가 없습니다.