1. 테이블 삭제?
데이터 삭제?
등을 미리 검토해 두자.

2. 되도록 동일한 버전에서 exp/imp 하도록 계획하자.
그렇지 않다고 한다면 높은 버전에서 exp하여 낮은 버전으로 imp 되는 지
그 반대의 경우도 조사해 두도록 하자.

3. sequence의 채번번호가 제대로 설정되어 있는 지 확인하자.
그렇지 않으면 시스템 가동후 에 "ORA-00001" 에러가 발생하게 될 것이다.

4. rows=no
테이블 정의만 import하고 싶다면 위의 option을 지정하자.
imp xxx/pass file=file.dmp log=imp.log fromuser=yyy touser=xxx rows=no

5. ignore=y
데이터만 import하고 싶다면 위의 option을 지정하자.
imp xxx/pass file=file.dmp log=imp.log fromuser=yyy touser=xxx ignore=y

6. full=y
데이터베이스 전체를 import할 때 사용한다.
full : 데이터베이스 전체를 imp/exp
owner : 특정 유저를 exp
tables: 특정 테이블을 exp/imp
imp system/manager fully=y owner=test01 file=c:\temp\exp_all.dmp

7. parfile 에 의한 exp/imp
exp system/***** parfile=params1.dat log=20040601.log
-- params.dat --
file=expdat.dmp
tables=(scott.emp,blake.dept)
grants=y
direct=y

---------------
imp system/***** parfile=params2.dat
--- params2.dat ---
file=expdat.dmp
fromuser=scott <-- blake.dept는 import 되지 않는다.
touser=blake
tables=(*)
---------------