Technical posts/Oracle

ORACLE export when read only mode / 오라클 read only 모드에서 export 하기

ODB 2015. 4. 13. 08:31

ORACLE database가 read only 모드일때 export가 되나요? 라는 질문을 받았다


답은 "된다" 이고 아래는 확인 결과 이다



C:\Users\web_dev>sqlplus


SQL*Plus: Release 11.2.0.3.0 Production on 월 4월 13 08:23:58 2015


Copyright (c) 1982, 2011, Oracle.  All rights reserved.


사용자명 입력: /as sysdba

휴지 인스턴스에 접속되었습니다.


SQL> startup mount

ORACLE 인스턴스가 시작되었습니다.


Total System Global Area 1570009088 bytes

Fixed Size                  2255544 bytes

Variable Size             973079880 bytes

Database Buffers          587202560 bytes

Redo Buffers                7471104 bytes

데이터베이스가 마운트되었습니다.

SQL> alter database open read only;


데이타베이스가 변경되었습니다.


SQL> select name, open_mode from v$database;


NAME               OPEN_MODE

------------------ ----------------------------------------

ORA11              READ ONLY


SQL> exit

Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production

With the Partitioning, OLAP, Data Mining and Real Application Testing options에서 분리되었습니다.


C:\Users\web_dev>exp system/oracle file=read_only_export.dmp log=read_only.log full=y


Export: Release 11.2.0.3.0 - Production on 월 4월 13 08:25:11 2015


Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.



다음에 접속됨: Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production

With the Partitioning, OLAP, Data Mining and Real Application Testing options

KO16KSC5601 문자 설정과 AL16UTF16 NCHAR 문자 설정에서 익스포트가 종료되었습니다

서버는 KO16MSWIN949 문자 집합을 사용합니다 (문자집합 변환이 가능합니다)


전체 데이터베이스를 익스포트하려고 합니다 ...

. 테이블 정의 익스포트 중

. 프로파일 익스포트 중

. 사용자 정의 익스포트 중

. 롤 익스포트 중

. 자원 비용을 익스포트

. 롤백 세그먼트 정의 익스포트 중

. 데이터베이스 링크 익스포트 중

. 순차 번호 익스포트 중

. 디렉토리 별칭을 익스포트합니다.

. 컨텍스트 이름공간을 엑스포트합니다

. 외래 함수 라이브러리 이름을 엑스포트합니다

. PUBLIC 유형 동의어 익스포트 중^C


read only mode로 open 하기


"이 포스팅은 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다."