dbms:oracle:admin:oracleexpimp
문서의 이전 판입니다!
목차
Oracle exp/imp
exp
- DB 전체를 export 시키는 방법
oracle$ exp system/passwd file=xxx.dmp log=xxx.log full=y
- hr유저 객체만 exp 할경우
oracle$ exp system/passwd file=xxx.dmp log=xxx.log owner=hr
imp
- DB 전체를 import 시키는 방법
oracle$ imp system/passwd file=xxx.dmp log=yyy.log full=y ignore=y buffer=8192000 feedback=1000000
- hr유저 객체만 imp 할경우
oracle$ imp system/passwd file=xxx.dmp log=yyy.log fromuser=hr touser=hr ignore=y buffer=8192000 feedback=1000000
- 기존 TABLE을 그대로 둔 상태에서 import 시키기
oracle$ imp userid/passwd@oracle_sid files=expdat.dmp ignore=y commit=y
- dumpfile 을 table만 import 시키는 명령
imp ${username}/${password} file=XXXX.dmp log=xxx.log fromuser=xxx touser=xxx tables=${tablename} indexes=y
dbms/oracle/admin/oracleexpimp.1178779407.txt.gz · 마지막으로 수정됨: 저자 starlits
