select username,account_status from dba_users;
ALTER USER system ACCOUNT UNLOCK
alter user system identified by 1234
백업 받을 떄
exp userid=testid/testpw file=LOG.dmp tables=LOG
백업파일로 복구할 때
imp userid=system/manager file=LOG.dmp fromuser=testid touser=testid
----------------------------------------------------------------------------------
▣ Import 예제 (백업한것을 가져오기)
예제1) 전체 데이터베이스가 IMPORT됩니다. (Full Level)
C:\>imp userid=system/manager file='C:\full.dmp' full=y
예제2) scott의 유저 IMPORT를 실행 합니다.(User Level)
C:\>imp userid=scott/tiger file='C:\scott.dmp'
예제3) 다른 계정으로 IMPORT하기
==> scott유저의 데이터를 EXPORT받아서 test 유저에게 IMPORT하는 예제 입니다.
C:\>exp userid=system/manager file='C:\scott.dmp' owner=scott
C:\>imp userid=system/manager file='C:\scott.dmp' fromuser=scott touser=test
ex) imp userid=system/jeju file='d:\jeju2.dmp' fromuser=jeju touser=jeju
--- 백업하기 -----
▣ Full Level Export
- 전체 데이터베이스가 엑스포트 됩니다.
- 모든 테이블스페이스, 모든 사용자, 또한 모든 객체, 데이터들이 포함됩니다.
예제) C:\>exp userid=system/manager file='C:\full.dmp' full=y
▣ User Level Export
- 사용자 객체들이 엑스포트 되고 객체들 안에 있는 데이터도 엑스포트 됩니다.
- 사용자 객체에 대한 모든 권한들과 인덱스들도 엑스포트 됩니다.
- 다른 사용자들의 객체와 권한, 인덱스들은 엑스포트 되지 않습니다.
예제1) 사용자 자신이 만든 모든 오브젝트를 그 user가 EXPORT하는 방법입니다.
C:\>exp userid=scott/tiger file='C:\scott.dmp'
예제2) SYSTEM/MANAGER로 접속한 DBA가 여러 user소유의 오브젝트들을 EXPORT 하는
방법입니다.
C:\>exp userid=system/manager owner=scott file='C:\scottuser.dmp'
ex) exp
system/manager@orajeju owner=jeju file=jeju2.dmp