반응형
In an environment where Oracle is installed and the exp and imp commands are available:
For Export:
Use the command
exp ID/PWD@IP:PORT file=FILENAME.dmp
Example: If the IP is 192.168.0.11, port is 1521, and SID is ORA11, then you would use
exp userid/userpwd@192.168.0.11:1521/ORA11 file=sample.dmp
For Import:
Use the command
imp ID/PWD@IP:PORT file=FILENAME.dmp
Example: To import, you would use
imp userid/userpwd@192.168.0.11:1521/ORA11 file=sample.dmp full=y
반응형
'Server > Oracle' 카테고리의 다른 글
[Oracle] ORA-01799: a column may not be outer-joined to a subquery (0) | 2024.03.01 |
---|---|
[Oracle] PL/SQL 프로시저 함수들 / DBMS_LOCK.SLEEP(), IF..ELSE.., WHILE LOOP (0) | 2024.01.19 |
[Oracle] 중첩된 case문 / 오라클 (2) | 2024.01.05 |
[Oracle12C] User 삭제 시 ORA-28014, 그리고 USER 생성 시 ORA-65096 뜰 때 (0) | 2019.12.09 |
[ORACLE] 세션 KILL 명령어 / ORA-00054: 자원이 사용중이고, NOWAIT가 지정되어 있습니다. (0) | 2019.11.27 |