검색결과 리스트
Database에 해당되는 글 16건
- 2007.12.20 오라클 Import & Export 1
글
오라클 Import & Export
Database
2007. 12. 20. 15:04
## 오라클 export/import 명령어
export명령어
exp owner=account rows=y file=filename.dmp log=logfilename.log
실행시키면 user-name가 password를 물어본다.
그럼 덤프뜨려는 스키마의 계정과 비밀번호를 입력한다.
그럼 덤프뜨려는 스키마의 계정과 비밀번호를 입력한다.
import명령어
imp fromuser=account touser=toaccount file=filename.dmp log=logfilename.log
account, filename, logfilename, toaccount 부분은 환경에 맞게 수정!