DATA GUARD GUIDE

Size: px
Start display at page:

Download "DATA GUARD GUIDE"

Transcription

1 Goodus 기술노트 [21 회 ] Author 최범진 Creation Date Last Updated Version 1.0 Copyright(C) 2004 Goodus Inc. All Rights Reserved Version 변경일자 변경자 ( 작성자 ) 주요내용 최범진 문서최초작성 최범진 Upgrade 3

2 Contents 개요 의유용성 의특성 switchover and failover Standby Database 종류 Physical standby database Logical standby database Protect Mode Maximum Protection Maximum Availability Maximum Performance 구축 Standby Database Configuration init.ora 설정 listener.ora 설정 tnsname.ora 설정 Creating physical standby database Standby control file 생성 ( At Primary) Standby DB copy Start and Mount Standby Instance (At Standby DB) 확인 Archive 전송 TEST Data 전송 TEST Mode 변경 Standby Database 상태변경 File Management Maximum Protection/Availability Mode SwitchOver SwitchOver 후 Archive 전송 Failover to standby database 굿어스 Cinema Day 초대 Pro-Active Tuning Service

3 1 1-1 개요 Oracle9i 는기본생산데이타베이스와대기데이타베이스로구성된시스템모음으로구현되며, 이시스템들이서로유연하게연결됨으로써관리가용이한하나의데이터보호솔루션을제공하게된다. 구성에서의각사이트들은같은데이터센터에있을수도있고지리적으로분산되어있을수도있으며, Oracle Network Services를통해서로연결될수도있다. 기본데이타베이스 (Primary Database) 가 transaction에의해수정되면물리적으로존재하는대기데이타베이스 (Standby Database) 는기본데이타베이스 (Primary Database) 에서의변화로인해생성된재실행데이타를전송받으며, 변경사항은복구모드에서실행되는대기데이타베이스 (Standby- Database) 에적용된다. 기본데이타베이스 (Primary Database) 가개방적이고활동적인반면, 대기데이타베이스 (Standby Database) 는복구역할을담당하고리포트액세스를위해서만개방된다. 기본데이터베이스에오류가발생하면생산데이타베이스의작업을대신하기위해대기데이타베이스를사용할수있다. 아래그림은이러한예를보여주고있다. 1-2 의유용성 Standby Database의사용이애플리케이션에영향을주지않으며이를위해애플리케이션코드를변경해야할필요가없기때문에, Standby Database 구성은거의모든데이타베이스에구축되어사용될수있다. Standby Database는 Primary Database의성능에전혀 ( 거의 0%) 영향을미치지않으면서구성될수있다. 또한생산데이타베이스에대한변경사항만이대기데이타베이스로전송되기때문에, 모든데이타베이스파일기록을미러링하는접근방식 - 3 -

4 과비교하여효과적인트랜잭션비율을보장할수있습니다. 대기데이타베이스는복구기능을수행하지않을경우에는읽기전용으로질의될수있으며, 이와동시에생산데이타베이스는계속해서재실행데이타를전송하게됩니다. 대기데이타베이스는전통적으로재난보호솔루션으로인식되어왔으나, 사용자오류나데이타손상같은재난시데이타를보호하기위해서도사용될수있습니다. 사람의실수, 파일시스템손상, 디스크볼륨초가기록으로인해기본데이타베이스가손상되었을경우에, 대기데이타베이스에대한원치않는변경때문에애플리케이션에지연이발생할수도있습니다. 또한대기데이타베이스는기본데이타베이스와대기데이타베이스간의스위치오버 (switchover) 라고도하는역할전환절차를통해, 운영체제및하드웨어업그레이드같은계획된정지로인한다운타임을줄이도록사용될수있습니다. 실제로이러한기능때문에, Oracle의많은고객들이고-가용성솔루션으로서일반적으로대기시스템을사용하고있습니다

5 2 의특성 2-1 switchover and failover - 자동실행이아닌 DBA 가 action 을취해야한다. - Switchover O/S 작업또는서버 PM 작업시사용 (primary standby, standby primary) - Failover Disk fail 등긴급상황에서사용. Standby database 가 main database(primary database) 로 failover 되기때문에기존구성된 Data guard 는사용할수없다. 새로운 data guard 를재구성하여사용하여야한다. 2-2 Standby Database 종류 Physical standby database - block 대 block 기반으로 primary DB 의 redo log 를적용시켜 standby DB 를동기화 - primary database 의 LGWR process 가 standby database redo log 를보내고, standby database 의 RFS process 가 redo log 를 standby redo log 에적용시킨다. archiving 되면 archived redo logs 가되고이것을 MRP process 가 standby database 에적용시킨다

6 2-2-2 Logical standby database - 같은 schema 정의로공유 - Primary database 의 sql 문장을 standby database 에적용 - Logical Standby database 는 primary database 에서수행된 SQL 문장을 LGWR process 가 standby database database 로보내고 RFS process 가받아서 Archived redo logs 에쓴다. LSP(Logical standby process) 가 standby database 에적용시킨다. - Primary database 에서 log switch 가일어나게되면 standby database 의 RFS process 에이를알려주어 log switch 가되도록한다. 2-3 Protect Mode Maximum Protection Primary DB 와 Standby DB 의 redo log 를동기화시킨다. Standby DB 가네트워크이상등의이유로 standby 로의전송이안될경우 primary 를 halt 시킨다. Data 가서로동기화되어 primary DB 에서 commit 을하게되면 standby DB 에서 commit 이완료될때까지 primary DB 에서 commit 완료를하지않는다. 성능에는문제를줄소지가있으나 failover 상황이오더라도데이터손실이없다. Physical standby database 에서만가능하다 Maximum Availability Maximum Protection 과마찬가지로 primary DB 와 standby DB 를동기화시킨다. 단, standby DB 가네트워크문제등의이유로전송이안될지라도 halt 되지는않는다. Data 는 maximum protection 과마찬가지로 primary DB 에서 commit 을하게되면 standby DB 에서 commit 이완료될때까지 primary DB 에서 commit 완료를하지않는다. 만약 standby DB 가 unavailable 상태일경우임시로불일치시킨다. 또다시 standby DB 가 available 하면자동으로동기화시킨다. 성능에는문제를줄소지가있으나 failover 상황이오더라도 data 손실은거의없다

7 Physical standby, logical standby DB 모두가능하다 Maximum Performance Default protection mode 이다. Primary data 에대한 protection 이가장낮다. Primary database 에 transaction 이수행되면이것을 asynchronous 하게 standby DB 에적용한다. 즉 maximum protection, maximum availability 의경우에는 standby DB 에적용 (commit) 될때까지 primary DB 의 transaction 이적용 (commit) 되지않았으나, 기다리지않는다. 즉 standby 유의문제로인해서 primary DB 에성능영향이가지않는다. 단, failover 시에는약간의데이터손실을가져올수있다

8 3 구축 3-1 Standby Database Configuration init.ora 설정 ( At Primary) #****************** # Primary Role #****************** log_archive_start=true log_archive_format=%t_%s.dbf log_archive_dest_1="location=/ora9/oradata/gd9a/archive" log_archive_dest_2='service=sgd9a MANDATORY LGWR SYNC AFFIRM' log_archive_dest_state_1 = ENABLE log_archive_dest_state_2 = ENABLE remote_archive_enable=true #******************* # Standby Role #******************* #log_archive_start=true #log_archive_format=%t_%s.dbf #log_archive_dest_1="location=/ora9/oradata/gd9a/archive" #log_archive_dest_state_1=enable #standby_archive_dest=/ora9/oradata/gd9a/archive #fal_server=gd9a #fal_client=gd9a #remote_archive_enable=true #standby_file_management=auto #******************* # Common #******************* dg_broker_start=true instance_name='gd9a' service_names='gd9a' #lock_name_space=sgd9a log_archive_trace=127 ( At Standby) #****************** # Primary Role #****************** #log_archive_start=true #log_archive_format=%t_%s.dbf #log_archive_dest_1="location=/ora9/oradata/gd9a/archive" #log_archive_dest_2='service=gd9a MANDATORY LGWR SYNC AFFIRM' #log_archive_dest_state_1 = ENABLE #log_archive_dest_state_2 = ENABLE #remote_archive_enable=true #******************* # Standby Role - 8 -

9 #******************* log_archive_start=true log_archive_format=%t_%s.dbf log_archive_dest_1="location=/ora9/oradata/gd9a/archive" log_archive_dest_state_1=enable standby_archive_dest=/ora9/oradata/gd9a/archive fal_server=gd9a fal_client=sgd9a remote_archive_enable=true standby_file_management=auto #******************* # Common #******************* dg_broker_start=true instance_name='gd9a' service_names='sgd9a' lock_name_space=sgd9a log_archive_trace= listener.ora 설정 ( At Primary) STANDBY_LISTENER = (DESCRIPTION_LIST = (DESCRIPTION = (ADDRESS_LIST = (ADDRESS=(PROTOCOL=TCP)(HOST = sf-a)(port = 1523)) ) ) ) SID_LIST_STANDBY_LISTENER = (SID_LIST = (SID_DESC = (ORACLE_HOME = /ora9/product/920) (SID_NAME = GD9A) ) ) ( At Standby) STANDBY_LISTENER = (DESCRIPTION_LIST = (DESCRIPTION = (ADDRESS_LIST = (ADDRESS=(PROTOCOL=TCP)(HOST = sf-b)(port = 1523)) ) ) ) - 9 -

10 SID_LIST_STANDBY_LISTENER = (SID_LIST = (SID_DESC = (ORACLE_HOME = /ora9/product/920) (SID_NAME = GD9A) ) ) tnsname.ora 설정 GD9A = (DESCRIPTION = (ADDRESS_LIST = (ADDRESS=(PROTOCOL=TCP)(HOST=sf-a)(PORT=1523)) ) (CONNECT_DATA = (SERVER = DEDICATED) (SID = GD9A) ) ) SGD9A = (DESCRIPTION = (ADDRESS_LIST = (ADDRESS=(PROTOCOL=TCP)(HOST=sf-b)(PORT= 1523)) ) (CONNECT_DATA = (SERVER = DEDICATED) (SID = GD9A) ) ) 3-2 Creating physical standby database Standby control file 생성 ( At Primary) SQL> alter database create standby controlfile as '/ora9/oradata/gd9a_back/standby.ctl'; SQL> shutdown immediate Standby DB copy datafile, controlfile, redo file,standby controlfile copy(primary standby) v$log, dba_data_files, v$controlfile 등을통해 datafile, controlfile, redo file 위치파악 [sf-a:ora9:/ora9/oradata]$ rcp -r /ora9/oradata/gd9a sf-b:/ora9/oradata/. SQL> startup Start and Mount Standby Instance (At Standby DB) SQL> startup nomount

11 Tue Mar 27 11:47: ARCH: STARTING ARCH PROCESSES COMPLETE Tue Mar 27 11:47: ARC0: Thread not mounted DMON started with pid=13 Tue Mar 27 11:47: ARC1: Archival started ARC1: Thread not mounted Tue Mar 27 11:47: Starting Broker (DMON) SQL> alter database mount standby database; Tue Mar 27 11:48: alter database mount standby database Tue Mar 27 11:48: lmon registered with NM - instance id 1 (internal mem no 0) Tue Mar 27 11:48: Reconfiguration started List of nodes: 0, Global Resource Directory frozen one node partition Communication channels reestablished Master broadcasted resource hash value bitmaps Non-local Process blocks cleaned out Resources and enqueues cleaned out Resources remastered 0 0 GCS shadows traversed, 0 cancelled, 0 closed 0 GCS resources traversed, 0 cancelled set master node info Submitted all remote-enqueue requests Update rdomain variables Dwn-cvts replayed, VALBLKs dubious All grantable enqueues granted 0 GCS shadows traversed, 0 replayed, 0 unopened Submitted all GCS remote-cache requests 0 write requests issued in 0 GCS resources 0 PIs marked suspect, 0 flush PI msgs Tue Mar 27 11:48: Reconfiguration complete Post SMON to start 1st pass IR Tue Mar 27 11:48: Successful mount of redo thread 1, with mount id Tue Mar 27 11:48: Standby Database mounted. Completed: alter database mount standby database Standby redo log 생성 SQL> alter database add standby logfile '/ora9/oradata/gd9a/standbylog01.log' size 10m; SQL> alter database add standby logfile '/ora9/oradata/gd9a/standbylog02.log' size 10m; SQL> alter database add standby logfile '/ora9/oradata/gd9a/standbylog03.log' size 10m; Tue Mar 27 11:50: alter database add standby logfile '/ora9/oradata/gd9a/standbylog01.log' size 10m Completed: alter database add standby logfile '/ora9/oradata/ Tue Mar 27 11:51: alter database add standby logfile '/ora9/oradata/gd9a/standbylog02.log' size 10m Completed: alter database add standby logfile '/ora9/oradata/ Tue Mar 27 11:51: alter database add standby logfile '/ora9/oradata/gd9a/standbylog03.log' size 10m Completed: alter database add standby logfile '/ora9/oradata/

12 logfile 확인 SQL> select group#,status,type from v$logfile; GROUP# STATUS TYPE ONLINE 2 ONLINE 3 ONLINE 4 STANDBY 5 STANDBY 6 STANDBY SQL> select group#,thread#,archived,status from v$log; GROUP# THREAD# ARCHIV STATUS NO CURRENT 2 1 YES INACTIVE 3 1 NO INACTIVE SQL> select group#, thread#, archived, status from v$standby_log; GROUP# THREAD# ARCHIV STATUS YES UNASSIGNED 5 0 YES UNASSIGNED 6 0 YES UNASSIGNED standby database 를 managed recovery mode 로설정 SQL> recover managed standby database disconnect; Tue Mar 27 11:53: ALTER DATABASE RECOVER managed standby database disconnect Attempt to start background Managed Standby Recovery process MRP0 started with pid=15 MRP0: Background Managed Standby Recovery process started Starting datafile 1 recovery in thread 1 sequence 25 Datafile 1: '/ora9/oradata/gd9a/system01.dbf' Starting datafile 2 recovery in thread 1 sequence 25 Datafile 2: '/ora9/oradata/gd9a/undotbs01.dbf' Starting datafile 3 recovery in thread 1 sequence 25 Datafile 3: '/ora9/oradata/gd9a/indx01.dbf' Starting datafile 4 recovery in thread 1 sequence 25 Datafile 4: '/ora9/oradata/gd9a/tools01.dbf' Starting datafile 5 recovery in thread 1 sequence 25 Datafile 5: '/ora9/oradata/gd9a/users01.dbf' Media Recovery Waiting for thread 1 seq# Tue Mar 27 11:53: Completed: ALTER DATABASE RECOVER managed standby database 확인 (At Standby DB) SQL> select database_role, protection_mode from v$database; DATABASE_ROLE PROTECTION_MODE

13 PHYSICAL STANDBY MAXIMUM PERFORMANCE ( At Primary DB) SQL> select database_role, protection_mode from v$database; DATABASE_ROLE PROTECTION_MODE PRIMARY MAXIMUM PERFORMANCE Archive 전송 TEST ( At Primary DB) SQL> alter system switch logfile; SQL> alter system switch logfile; SQL> alter system switch logfile; SQL> select dest_id,status,error from v$archive_dest where dest_id <=2; DEST_ID STATUS ERROR VALID 2 VALID (( At Primary DB) Tue Mar 27 14:28: LGWR: Completed archiving log 2 thread 1 sequence 29 Creating archive destination LOG_ARCHIVE_DEST_2: 'SGD9A' LGWR: Transmitting activation ID 6b9d546e LGWR: Beginning to archive log 3 thread 1 sequence 30 Tue Mar 27 14:28: ARC0: Evaluating archive log 2 thread 1 sequence 29 Tue Mar 27 14:28: Thread 1 advanced to log sequence 30 Current log# 3 seq# 30 mem# 0: /ora9/oradata/gd9a/redo03.log Tue Mar 27 14:28: ARC0: Archive destination LOG_ARCHIVE_DEST_2: Previously completed ARC0: Beginning to archive log 2 thread 1 sequence 29 Creating archive destination LOG_ARCHIVE_DEST_1: '/ora9/oradata/gd9a/archive/1_29.dbf' ARC0: Completed archiving log 2 thread 1 sequence 29 Tue Mar 27 14:28: LGWR: Completed archiving log 3 thread 1 sequence 30 Creating archive destination LOG_ARCHIVE_DEST_2: 'SGD9A' LGWR: Transmitting activation ID 6b9d546e LGWR: Beginning to archive log 1 thread 1 sequence 31 Thread 1 advanced to log sequence 31 Current log# 1 seq# 31 mem# 0: /ora9/oradata/gd9a/redo01.log Tue Mar 27 14:28: ARC1: Evaluating archive log 3 thread 1 sequence 30 Tue Mar 27 14:28: ARC0: Transmitting activation ID 6b9d546e Tue Mar 27 14:28: ARC1: Archive destination LOG_ARCHIVE_DEST_2: Previously completed ARC1: Beginning to archive log 3 thread 1 sequence 30 Creating archive destination LOG_ARCHIVE_DEST_1: '/ora9/oradata/gd9a/archive/1_30.dbf' kccrsz: expanded controlfile section 11 from 13 to 27 records requested to grow by 13 record(s); added 1 block(s) of records ARC1: Completed archiving log 3 thread 1 sequence 30 Tue Mar 27 14:28:

14 LGWR: Completed archiving log 1 thread 1 sequence 31 Creating archive destination LOG_ARCHIVE_DEST_2: 'SGD9A' LGWR: Transmitting activation ID 6b9d546e LGWR: Beginning to archive log 2 thread 1 sequence 32 Tue Mar 27 14:28: ARC0: Evaluating archive log 1 thread 1 sequence 31 Tue Mar 27 14:28: Thread 1 advanced to log sequence 32 Current log# 2 seq# 32 mem# 0: /ora9/oradata/gd9a/redo02.log Tue Mar 27 14:28: ARC0: Archive destination LOG_ARCHIVE_DEST_2: Previously completed ARC0: Beginning to archive log 1 thread 1 sequence 31 Creating archive destination LOG_ARCHIVE_DEST_1: '/ora9/oradata/gd9a/archive/1_31.dbf' ARC0: Completed archiving log 1 thread 1 sequence 31 (At Standby DB) ARC1: Evaluating archive log 5 thread 1 sequence 29 ARC1: Beginning to archive log 5 thread 1 sequence 29 Creating archive destination LOG_ARCHIVE_DEST_1: '/ora9/oradata/gd9a/archive/1_29.dbf' Tue Mar 27 14:28: RFS: Successfully opened standby logfile 4: '/ora9/oradata/gd9a/standbylog01.log' Tue Mar 27 14:28: ARC1: Completed archiving log 5 thread 1 sequence 29 ARC1: Evaluating archive log 4 thread 1 sequence 30 ARC1: Beginning to archive log 4 thread 1 sequence 30 Creating archive destination LOG_ARCHIVE_DEST_1: '/ora9/oradata/gd9a/archive/1_30.dbf' ARC1: Completed archiving log 4 thread 1 sequence 30 Tue Mar 27 14:28: RFS: Successfully opened standby logfile 4: '/ora9/oradata/gd9a/standbylog01.log' Tue Mar 27 14:28: ARC1: Evaluating archive log 4 thread 1 sequence 31 ARC1: Beginning to archive log 4 thread 1 sequence 31 Creating archive destination LOG_ARCHIVE_DEST_1: '/ora9/oradata/gd9a/archive/1_31.dbf' ARC1: Completed archiving log 4 thread 1 sequence 31 Tue Mar 27 14:28: RFS: Successfully opened standby logfile 4: '/ora9/oradata/gd9a/standbylog01.log' SQL>! ls /ora9/oradata/gd9a/archive 1_24.dbf 1_25.dbf 1_26.dbf 1_27.dbf 1_28.dbf 1_29.dbf 1_30.dbf 1_31.dbf 3-2 Data 전송 TEST ( At Primary DB) SQL> create table twins (a number); SQL> insert into twins values(407); SQL> commit; SQL> alter system switch logfile; (At Standby DB) SQL> recover managed standby database cancel; === standby alert log === Tue Mar 27 14:45: Media Recovery Log /ora9/oradata/gd9a/archive/1_32.dbf

15 Media Recovery Waiting for thread 1 seq# 33 Tue Mar 27 14:46: ALTER DATABASE RECOVER managed standby database cancel Tue Mar 27 14:46: MRP0: Background Media Recovery user canceled with status MRP0: Background Media Recovery process shutdown Tue Mar 27 14:46: Managed Standby Recovery Cancelled Completed: ALTER DATABASE RECOVER managed standby database c === primay alert log === Network asynch I/O wait error 3114 log 3 service 'SGD9A' Tue Mar 27 14:46: Errors in file /ora9/admin/gd9a/bdump/gd9a_lgwr_15429.trc: ORA-03114: not connected to ORACLE SQL> alter database open read only; read only mode 로 standby DB open alter database open read only Tue Mar 27 14:51: SMON: enabling cache recovery Tue Mar 27 14:51: Database Characterset is KO16MSWIN949 replication_dependency_tracking turned off (no async multimaster replication found) Completed: alter database open read only SQL> select * from twins; A Mode 변경 read only managed recovery mode 로전환 SQL> shutdown Tue Mar 27 14:55: Shutting down instance: further logons disabled Shutting down instance (normal) License high water mark = 2 Tue Mar 27 14:56: ALTER DATABASE CLOSE NORMAL Tue Mar 27 14:56: SMON: disabling cache recovery Tue Mar 27 14:56: Completed: ALTER DATABASE CLOSE NORMAL Tue Mar 27 14:56: ALTER DATABASE DISMOUNT Completed: ALTER DATABASE DISMOUNT ARCH: Archiving is disabled Shutting down archive processes Archiving is disabled ARCH 9 state 3 ARCH 8 state 3 Tue Mar 27 14:56: ARCH shutting down ARC0: Archival stopped Tue Mar 27 14:56: ARCH shutting down ARC1: Archival stopped Tue Mar 27 14:56: ARCH: Archiving is disabled

16 Shutting down archive processes Archiving is disabled Archive process shutdown avoided: 0 active Shutting down Broker processes Tue Mar 27 14:56: Completed: Broker shutdown SQL> startup nomount === standby alert log === ARC0: Thread not mounted ARC1 started with pid=12 ARC1: Archival started ARC1: Thread not mounted Tue Mar 27 15:00: Starting Broker (DMON) Tue Mar 27 15:00: destination database instance is 'started' not 'mounted' === primary alert log === Tue Mar 27 15:00: Errors in file /ora9/admin/gd9a/bdump/gd9a_arc1_15459.trc: ORA-16058: standby database instance is not mounted SQL> alter database mount standby database; Tue Mar 27 15:04: alter database mount standby database Tue Mar 27 15:04: lmon registered with NM - instance id 1 (internal mem no 0) Tue Mar 27 15:04: Reconfiguration started List of nodes: 0, Global Resource Directory frozen one node partition Communication channels reestablished Master broadcasted resource hash value bitmaps Non-local Process blocks cleaned out Resources and enqueues cleaned out Resources remastered 0 0 GCS shadows traversed, 0 cancelled, 0 closed 0 GCS resources traversed, 0 cancelled set master node info Submitted all remote-enqueue requests Update rdomain variables Dwn-cvts replayed, VALBLKs dubious All grantable enqueues granted 0 GCS shadows traversed, 0 replayed, 0 unopened Submitted all GCS remote-cache requests 0 write requests issued in 0 GCS resources 0 PIs marked suspect, 0 flush PI msgs Tue Mar 27 15:04: Reconfiguration complete Post SMON to start 1st pass IR Tue Mar 27 15:04: Successful mount of redo thread 1, with mount id Tue Mar 27 15:04: Standby Database mounted. Completed: alter database mount standby database SQL> recover managed standby database disconnect; Tue Mar 27 15:05: ALTER DATABASE RECOVER managed standby database disconnect

17 Attempt to start background Managed Standby Recovery process MRP0 started with pid=16 MRP0: Background Managed Standby Recovery process started Starting datafile 1 recovery in thread 1 sequence 33 Datafile 1: '/ora9/oradata/gd9a/system01.dbf' Starting datafile 2 recovery in thread 1 sequence 33 Datafile 2: '/ora9/oradata/gd9a/undotbs01.dbf' Starting datafile 3 recovery in thread 1 sequence 33 Datafile 3: '/ora9/oradata/gd9a/indx01.dbf' Starting datafile 4 recovery in thread 1 sequence 33 Datafile 4: '/ora9/oradata/gd9a/tools01.dbf' Starting datafile 5 recovery in thread 1 sequence 33 Datafile 5: '/ora9/oradata/gd9a/users01.dbf' Media Recovery Waiting for thread 1 seq# 33 Tue Mar 27 15:05: Completed: ALTER DATABASE RECOVER managed standby database d Tue Mar 27 15:05: RFS: Possible network disconnect with primary database 3-3 Standby Database 상태변경 1. shut down => managed recovery mode SQL> startup nomount SQL> alter database mount standby database; SQL> recover managed standby database disconnect(from session); 2. shutdown => read only Standby SQL> startup nomount SQL> alter database mount standby database; SQL> alter database open read only;; 3. managed recovery mode => read only Standby SQL> recover managed standby database cancel; SQL>alter database open read only; 4. read only Standby => managed recovery mode( 모든 session 종료 ) SQL> recover managed standby database disconnect(from session); 3-4 File Management standby database 에 MRP process가떠있는지반듯이확인 (At Standby DB) SQL> select process,status from v$managed_standby; PROCESS STATUS ARCH CONNECTED ARCH CONNECTED RFS RECEIVING MRP0 WAIT_FOR_LOG

18 1. add tablespace or datafile (standby_file_management = auto in STANDBY ) ( At Primary DB) SQL> create tablespace twins datafile '/ora9/oradata/gd9a/twins.dbf' size 5m; Tue Mar 27 15:55: create tablespace twins datafile '/ora9/oradata/gd9a/twins.dbf' size 5m Tue Mar 27 15:55: Completed: create tablespace twins datafile '/ora9/oradata/gd SQL> alter system switch logfile; === primary alert log === Tue Mar 27 15:55: LGWR: Completed archiving log 3 thread 1 sequence 33 LGWR: Error 1010 disconnecting from destination LOG_ARCHIVE_DEST_2 standby host 'SGD9A' LGWR: RFS network connection re-established at host 'SGD9A' LGWR: RFS destination opened for reconnect at host 'SGD9A' Creating archive destination LOG_ARCHIVE_DEST_2: 'SGD9A' LGWR: Transmitting activation ID 6b9d546e LGWR: Beginning to archive log 1 thread 1 sequence 34 Tue Mar 27 15:55: ARC0: Evaluating archive log 3 thread 1 sequence 33 Tue Mar 27 15:55: Thread 1 advanced to log sequence 34 Tue Mar 27 15:55: ARC0: LGWR is actively archiving destination LOG_ARCHIVE_DEST_2 Tue Mar 27 15:55: Current log# 1 seq# 34 mem# 0: /ora9/oradata/gd9a/redo01.log Tue Mar 27 15:55: ARC0: Beginning to archive log 3 thread 1 sequence 33 Creating archive destination LOG_ARCHIVE_DEST_2: 'SGD9A' ARC0: Transmitting activation ID 6b9d546e Creating archive destination LOG_ARCHIVE_DEST_1: '/ora9/oradata/gd9a/archive/1_33.dbf' ARC0: Completed archiving log 3 thread 1 sequence 33 === standby alert log === Tue Mar 27 15:55: RFS: Successfully opened standby logfile 4: '/ora9/oradata/gd9a/standbylog01.log' Tue Mar 27 15:55: ARC1: Evaluating archive log 4 thread 1 sequence 33 ARC1: Beginning to archive log 4 thread 1 sequence 33 Creating archive destination LOG_ARCHIVE_DEST_1: '/ora9/oradata/gd9a/archive/1_33.dbf' ARC1: Log corruption near block 6 change time? ARC1: All Archive destinations made inactive due to error 354 Tue Mar 27 15:55: Errors in file /ora9/admin/gd9a/bdump/gd9a_arc1_23459.trc: ORA-00354: corrupt redo log block header ORA-00353: log corruption near block 6 change time 03/27/ :41:21 ORA-00312: online log 4 thread 1: '/ora9/oradata/gd9a/standbylog01.log' ARC1: Archiving not possible: error count exceeded ARC1: Failed to archive log 4 thread 1 sequence 33 Clearing standby logfile 4 thread 1 sequence 33 due to error 354 ARCH: Archival stopped, error occurred. Will continue retrying Tue Mar 27 15:55: ORACLE Instance GD9A - Archival Error ARCH: Connecting to console port... Tue Mar 27 15:55: ORA-16038: log 4 sequence# 33 cannot be archived ORA-00354: corrupt redo log block header ORA-00312: online log 4 thread 1: '/ora9/oradata/gd9a/standbylog01.log' ARCH: Connecting to console port... ARCH: Tue Mar 27 15:55:

19 ORA-16038: log 4 sequence# 33 cannot be archived ORA-00354: corrupt redo log block header ORA-00312: online log 4 thread 1: '/ora9/oradata/gd9a/standbylog01.log' Tue Mar 27 15:55: Errors in file /ora9/admin/gd9a/bdump/gd9a_arc1_23459.trc: ORA-16038: log 4 sequence# 33 cannot be archived ORA-00354: corrupt redo log block header ORA-00312: online log 4 thread 1: '/ora9/oradata/gd9a/standbylog01.log' Tue Mar 27 15:55: RFS: Successfully opened standby logfile 4: '/ora9/oradata/gd9a/standbylog01.log' Tue Mar 27 15:56: Media Recovery Log /ora9/oradata/gd9a/archive/1_33.dbf Recovery created file /ora9/oradata/gd9a/twins.dbf Successfully added datafile 6 to media recovery Datafile #6: '/ora9/oradata/gd9a/twins.dbf' Media Recovery Waiting for thread 1 seq# 34 (in transit) Tue Mar 27 15:56: Archiver process freed from errors. No longer stopped (At Standby DB) SQL> select name from v$datafile; NAME /ora9/oradata/gd9a/system01.dbf /ora9/oradata/gd9a/undotbs01.dbf /ora9/oradata/gd9a/indx01.dbf /ora9/oradata/gd9a/tools01.dbf /ora9/oradata/gd9a/users01.dbf /ora9/oradata/gd9a/twins. dbf 2. rename datafile (statndby_file_manangement=manual/auto in STANDBY) ( At Primary DB) SQL> alter tablespace twins offline; SQL>! cp /ora9/oradata/gd9a/twins.dbf /ora9/oradata/gd9a/twins_1.dbf SQL> select file_name from dba_data_files; FILE_NAME /ora9/oradata/gd9a/system01.dbf /ora9/oradata/gd9a/undotbs01.dbf /ora9/oradata/gd9a/indx01.dbf /ora9/oradata/gd9a/tools01.dbf /ora9/oradata/gd9a/users01.dbf /ora9/oradata/gd9a/twins.dbf SQL> alter database rename file '/ora9/oradata/gd9a/twins.dbf' to '/ora9/oradata/gd9a/twins_1.dbf'; SQL> alter tablespace twins online; SQL> select file_name from dba_data_files; FILE_NAME

20 /ora9/oradata/gd9a/system01.dbf /ora9/oradata/gd9a/undotbs01.dbf /ora9/oradata/gd9a/indx01.dbf /ora9/oradata/gd9a/tools01.dbf /ora9/oradata/gd9a/users01.dbf /ora9/oradata/gd9a/twins_1.dbf (At Standby DB) standby 에서 rename 을안해도 redo apply 는정상적으로된다. SQL> select name,sequence#,archived,applied from v$archived_log; (applied => 모두 YES 인지확인 ) NAME SEQUENCE# ARCHIV APPLIE /ora9/oradata/gd9a/archive/1_24.dbf 24 YES NO /ora9/oradata/gd9a/archive/1_25.dbf 25 YES YES /ora9/oradata/gd9a/archive/1_26.dbf 26 YES YES /ora9/oradata/gd9a/archive/1_27.dbf 27 YES YES /ora9/oradata/gd9a/archive/1_28.dbf 28 YES YES /ora9/oradata/gd9a/archive/1_29.dbf 29 YES YES /ora9/oradata/gd9a/archive/1_30.dbf 30 YES YES /ora9/oradata/gd9a/archive/1_31.dbf 31 YES YES /ora9/oradata/gd9a/archive/1_32.dbf 32 YES YES /ora9/oradata/gd9a/archive/1_33.dbf 33 YES YES /ora9/oradata/gd9a/archive/1_34.dbf 34 YES YES /ora9/oradata/gd9a/archive/1_35.dbf 35 YES YES /ora9/oradata/gd9a/archive/1_36.dbf 36 YES YES /ora9/oradata/gd9a/archive/1_37.dbf 37 YES YES SQL> recover managed standby database cancel; SQL> shutdown immediate SQL>! cp /ora9/oradata/gd9a/twins.dbf /ora9/oradata/gd9a/twins_1.dbf SQL> startup nomount SQL> alter database mount standby database; SQL> show parameter standby_file NAME TYPE VALUE standby_file_management string auto SQL> alter system set standby_file_management=manual;

21 SQL> show parameter standby_file NAME TYPE VALUE standby_file_management string MANUAL SQL> alter database rename file '/ora9/oradata/gd9a/twins.dbf' to '/ora9/oradata/gd9a/twins_1.dbf'; SQL> recover managed standby database disconnect; SQL> select name from v$datafile; NAME /ora9/oradata/gd9a/system01.dbf /ora9/oradata/gd9a/undotbs01.dbf /ora9/oradata/gd9a/indx01.dbf /ora9/oradata/gd9a/tools01.dbf /ora9/oradata/gd9a/users01.dbf /ora9/oradata/gd9a/twins_1.dbf SQL> alter system set standby_file_management=auto; 3. drop tablespace (standby_file_management=manual/auto in STANDBY) ( At Primary DB) SQL> drop tablespace twins including contents and datafiles; SQL> alter system switch logfile; === primary alert log === Tue Mar 27 17:03: drop tablespace twins including contents and datafiles Tue Mar 27 17:03: Deleted file /ora9/oradata/gd9a/twins_1.dbf Completed: drop tablespace twins including contents and dataf Tue Mar 27 17:03: LGWR: Completed archiving log 3 thread 1 sequence 39 Creating archive destination LOG_ARCHIVE_DEST_2: 'SGD9A' LGWR: Transmitting activation ID 6b9d546e LGWR: Beginning to archive log 1 thread 1 sequence 40 Thread 1 advanced to log sequence 40 Current log# 1 seq# 40 mem# 0: /ora9/oradata/gd9a/redo01.log Tue Mar 27 17:03: ARC0: Evaluating archive log 3 thread 1 sequence 39 ARC0: Archive destination LOG_ARCHIVE_DEST_2: Previously completed ARC0: Beginning to archive log 3 thread 1 sequence 39 Creating archive destination LOG_ARCHIVE_DEST_1: '/ora9/oradata/gd9a/archive/1_39.dbf' ARC0: Completed archiving log 3 thread 1 sequence 39 === standby alert log === Tue Mar 27 17:03: ARC1: Evaluating archive log 4 thread 1 sequence 39 ARC1: Beginning to archive log 4 thread 1 sequence 39 Creating archive destination LOG_ARCHIVE_DEST_1: '/ora9/oradata/gd9a/archive/1_39.dbf'

22 ARC1: Completed archiving log 4 thread 1 sequence 39 Tue Mar 27 17:03: RFS: Successfully opened standby logfile 4: '/ora9/oradata/gd9a/standbylog01.log' Tue Mar 27 17:03: Media Recovery Log /ora9/oradata/gd9a/archive/1_39.dbf Recovery deleting file #6:'/ora9/oradata/GD9A/twins_1.dbf' Deleted file /ora9/oradata/gd9a/twins_1.dbf Recovery dropped tablespace 'TWINS' Media Recovery Waiting for thread 1 seq# 40 (in transit) (At Standby DB) SQL> select name from v$datafile; NAME /ora9/oradata/gd9a/system01.dbf /ora9/oradata/gd9a/undotbs01.dbf /ora9/oradata/gd9a/indx01.dbf /ora9/oradata/gd9a/tools01.dbf /ora9/oradata/gd9a/users01.dbf SQL>!ls /ora9/oradata/gd9a/twins_1.dbf /ora9/oradata/gd9a/twins_1.dbf: 해당파일이나디렉토리가없음 3-5 Maximum Protection/Availability Mode default value = maximum performance ( At Primary) SQL> select protection_mode from v$database; PROTECTION_MODE MAXIMUM PERFORMANCE -- standby redo log 생성 (for switchover) SQL> alter database add standby logfile '/ora9/oradata/gd9a/standbylog_11.log' size 10m; SQL> alter database add standby logfile '/ora9/oradata/gd9a/standbylog_22.log' size 10m; SQL> alter database add standby logfile '/ora9/oradata/gd9a/standbylog_33.log' size 10m; SQL> shutdown immediate SQL> startup mount SQL> alter database set standby to maximize protection; SQL> alter database open; Database altered. SQL> select protection_mode from v$database;

23 PROTECTION_MODE MAXIMUM PROTECTION 3-5 SwitchOver ( At Primary) SQL> select switchover_status from v$database; SWITCHOVER_STATUS TO STANDBY SQL> alter database commit to switchover to physical standby with session shutdown wait; === primary alert log === Tue Mar 27 18:19: alter database commit to switchover to physical standby with session shutdown wait Tue Mar 27 18:19: ALTER DATABASE COMMIT TO SWITCHOVER TO PHYSICAL STANDBY LGWR: Performing log switch to complete LGWR archival of current logfile Tue Mar 27 18:19: LGWR: Completed archiving log 2 thread 1 sequence 41 Thread 1 advanced to log sequence 42 Current log# 3 seq# 42 mem# 0: /ora9/oradata/gd9a/redo03.log Tue Mar 27 18:19: ARCH: Evaluating archive log 2 thread 1 sequence 41 ARCH: Archive destination LOG_ARCHIVE_DEST_2: Previously completed Tue Mar 27 18:19: ARC0: Evaluating archive log 2 thread 1 sequence 41 Tue Mar 27 18:19: ARCH: Beginning to archive log 2 thread 1 sequence 41 Tue Mar 27 18:19: ARC0: Unable to archive log 2 thread 1 sequence 41 Log actively being archived by another process Tue Mar 27 18:19: Creating archive destination LOG_ARCHIVE_DEST_1: '/ora9/oradata/gd9a/archive/1_41.dbf' ARCH: Completed archiving log 2 thread 1 sequence 41 Tue Mar 27 18:19: Thread 1 advanced to log sequence 43 Tue Mar 27 18:19: ARCH: Evaluating archive log 3 thread 1 sequence 42 Tue Mar 27 18:19: Current log# 1 seq# 43 mem# 0: /ora9/oradata/gd9a/redo01.log Tue Mar 27 18:19: ARC0: Evaluating archive log 3 thread 1 sequence 42 ARC0: Unable to archive log 3 thread 1 sequence 42 Log actively being archived by another process Tue Mar 27 18:19: ARCH: LGWR is actively archiving destination LOG_ARCHIVE_DEST_2 ARCH: Beginning to archive log 3 thread 1 sequence 42 Creating archive destination LOG_ARCHIVE_DEST_2: 'SGD9A' ARCH: Transmitting activation ID 6b9d546e Creating archive destination LOG_ARCHIVE_DEST_1: '/ora9/oradata/gd9a/archive/1_42.dbf'arch: Completed archiving log 3 thread 1 sequence 42 Tue Mar 27 18:19: SMON: disabling tx recovery SMON: disabling cache recovery Tue Mar 27 18:19: Shutting down archive processes Archiving is disabled ARCH 9 state 3 ARCH 8 state 3 Tue Mar 27 18:19:

24 Errors in file /ora9/admin/gd9a/bdump/gd9a_lgwr_24156.trc: ORA-00449: background process 'LNS0' unexpectedly terminated with error 448 ORA-00448: normal completion of background process Tue Mar 27 18:19: ARCH shutting down ARC0: Archival stopped Tue Mar 27 18:19: ARCH shutting down ARC1: Archival stopped Tue Mar 27 18:19: Thread 1 closed at log sequence 43 Successful close of redo thread 1. Tue Mar 27 18:19: ARCH: noswitch archival of thread 1, sequence 43 ARCH: End-Of-Redo archival of thread 1 sequence 43 ARCH: Evaluating archive log 1 thread 1 sequence 43 ARCH: LGWR is actively archiving destination LOG_ARCHIVE_DEST_2 ARCH: Beginning to archive log 1 thread 1 sequence 43 Creating archive destination LOG_ARCHIVE_DEST_2: 'SGD9A' ARCH: Transmitting activation ID 6b9d546e Creating archive destination LOG_ARCHIVE_DEST_1: '/ora9/oradata/gd9a/archive/1_43.dbf' ARCH: Completed archiving log 1 thread 1 sequence 43 ARCH: archiving is disabled due to current logfile archival Clearing standby activation ID (0x6b9d546e) The primary database controlfile was created using the 'MAXLOGFILES 20' clause. There is space for up to 17 standby redo logfiles Use the following SQL commands on the standby database to create standby redo logfiles that match the primary database: ALTER DATABASE ADD STANDBY LOGFILE 'srl1.f' SIZE ; ALTER DATABASE ADD STANDBY LOGFILE 'srl2.f' SIZE ; ALTER DATABASE ADD STANDBY LOGFILE 'srl3.f' SIZE ; ALTER DATABASE ADD STANDBY LOGFILE 'srl4.f' SIZE ; Archivelog for thread 1 sequence 43 required for standby recovery MRP0 started with pid=11 MRP0: Background Managed Standby Recovery process started Starting datafile 1 recovery in thread 1 sequence 43 Datafile 1: '/ora9/oradata/gd9a/system01.dbf' Starting datafile 2 recovery in thread 1 sequence 43 Datafile 2: '/ora9/oradata/gd9a/undotbs01.dbf' Starting datafile 3 recovery in thread 1 sequence 43 Datafile 3: '/ora9/oradata/gd9a/indx01.dbf' Starting datafile 4 recovery in thread 1 sequence 43 Datafile 4: '/ora9/oradata/gd9a/tools01.dbf' Starting datafile 5 recovery in thread 1 sequence 43 Datafile 5: '/ora9/oradata/gd9a/users01.dbf' Media Recovery Log /ora9/oradata/gd9a/archive/1_43.dbf Identified end-of-redo for thread 1 sequence 43 Identified end-of-redo for thread 1 sequence 43 Media Recovery End-Of-Redo indicator encountered Media Recovery Applied until change MRP0: Media Recovery Complete: End-Of-REDO Resetting standby activation ID (0x6b9d546e) MRP0: Background Media Recovery process shutdown Tue Mar 27 18:19: Switchover: Complete - Database shutdown required Completed: alter database commit to switchover to physical st === stadby alert log === Tue Mar 27 18:19: ARC1: Evaluating archive log 4 thread 1 sequence 41 ARC1: Beginning to archive log 4 thread 1 sequence 41 Creating archive destination LOG_ARCHIVE_DEST_1: '/ora9/oradata/gd9a/archive/1_41.dbf' ARC1: Completed archiving log 4 thread 1 sequence 41 Tue Mar 27 18:19: RFS: Possible network disconnect with primary database RFS: End-Of-Redo archival of thread 1 sequence

25 Tue Mar 27 18:19: Media Recovery Log /ora9/oradata/gd9a/archive/1_41.dbf Media Recovery Log /ora9/oradata/gd9a/archive/1_42.dbf Media Recovery Log /ora9/oradata/gd9a/archive/1_43.dbf Identified end-of-redo for thread 1 sequence 43 Identified end-of-redo for thread 1 sequence 43 Media Recovery End-Of-Redo indicator encountered Media Recovery Applied until change MRP0: Media Recovery Complete: End-Of-REDO Resetting standby activation ID (0x6b9d546e) MRP0: Background Media Recovery process shutdown SQL> shutdown immediate === primary alert log === Tue Mar 27 18:29: Shutting down instance: further logons disabled Shutting down instance (immediate) License high water mark = 1 Tue Mar 27 18:29: ALTER DATABASE CLOSE NORMAL ORA-1507 signalled during: ALTER DATABASE CLOSE NORMAL... ARCH: Archiving is disabled Shutting down archive processes Archiving is disabled Archive process shutdown avoided: 0 active ARCH: Archiving is disabled Shutting down archive processes Archiving is disabled Archive process shutdown avoided: 0 active Shutting down Broker processes Tue Mar 27 18:29: Completed: Broker shutdown (At Standby DB) SQL> select switchover_status from v$database; SWITCHOVER_STATUS NOT ALLOWED default 값 SQL> select switchover_status from v$database; SWITCHOVER_STATUS TO PRIMARY Primary db 에서 alter database commit to switchover to physical standby with session shutdown wait; 실행후바뀐값 SQL> alter database commit to switchover to primary with session shutdown wait; Tue Mar 27 18:36: alter database commit to switchover to primary with session shutdown wait Tue Mar 27 18:36: ALTER DATABASE COMMIT TO SWITCHOVER TO PRIMARY RESETLOGS after incomplete recovery UNTIL CHANGE Resetting resetlogs activation ID 0 (0x0) Switchover: Complete - Database shutdown required Completed: alter database commit to switchover to primary wit SQL> shutdown immediate; Tue Mar 27 18:37: Shutting down instance: further logons disabled Shutting down instance (immediate) License high water mark = 4 Tue Mar 27 18:37: ALTER DATABASE CLOSE NORMAL

26 ORA-1507 signalled during: ALTER DATABASE CLOSE NORMAL... ARCH: Archiving is disabled Shutting down archive processes Archiving is disabled ARCH 9 state 3 ARCH 8 state 3 Tue Mar 27 18:37: ARCH shutting down ARC0: Archival stopped Tue Mar 27 18:37: ARCH shutting down ARC1: Archival stopped Tue Mar 27 18:37: ARCH: Archiving is disabled Shutting down archive processes Archiving is disabled Archive process shutdown avoided: 0 active Shutting down Broker processes Tue Mar 27 18:37: Completed: Broker shutdown (New Standby DB) [sf-a:ora9:/ora9/product/920/dbs]$ vi initgd9a.ora #log_archive_dest_2='service=sgd9a MANDATORY LGWR SYNC AFFIRM' fal_server=sgd9a fal_client=gd9a lock_name_space=sgd9a 수정 SQL> startup nomount Tue Mar 27 18:53: Starting ORACLE instance (normal) Tue Mar 27 18:53: Global Enqueue Service Resources = 64, pool = 2 Tue Mar 27 18:53: Global Enqueue Service Enqueues = 128 LICENSE_MAX_SESSION = 0 LICENSE_SESSIONS_WARNING = 0 GES IPC: Receivers 1 Senders 1 GES IPC: Buffers Receive 1000 Send 530 Reserve 300 GES IPC: Msg Size Regular 432 Batch 2048 SCN scheme 3 Using log_archive_dest parameter default value LICENSE_MAX_USERS = 0 SYS auditing is disabled Starting up ORACLE RDBMS Version: System parameters with non-default values: processes = 150 timed_statistics = TRUE shared_pool_size = large_pool_size = java_pool_size = 0 lock_name_space = SGD9A control_files = /ora9/oradata/gd9a/control01.ctl, /ora9/oradata/gd9a/control02.ctl db_block_size = 8192 db_cache_size = compatible = remote_archive_enable = true log_archive_start = TRUE log_archive_dest_1 = location=/ora9/oradata/gd9a/archive log_archive_dest_state_1 = enable standby_archive_dest = /ora9/oradata/gd9a/archive log_archive_trace = 127 fal_server = SGD9A fal_client = GD9A log_archive_format = %t_%s.dbf

27 db_file_multiblock_read_count= 16 standby_file_management = auto fast_start_mttr_target = 300 instance_number = 1 undo_management = AUTO undo_tablespace = UNDOTBS1 undo_retention = remote_login_passwordfile= EXCLUSIVE db_domain = instance_name = GD9A service_names = GD9A hash_join_enabled = TRUE background_dump_dest = /ora9/admin/gd9a/bdump user_dump_dest = /ora9/admin/gd9a/udump core_dump_dest = /ora9/admin/gd9a/cdump sort_area_size = db_name = GD9A open_cursors = 300 star_transformation_enabled= FALSE query_rewrite_enabled = FALSE pga_aggregate_target = dg_broker_start = TRUE Tue Mar 27 18:53: cluster interconnect IPC version:oracle UDP/IP IPC Vendor 1 proto 2 Version 1.0 PMON started with pid=2 DIAG started with pid=3 LMON started with pid=4 LMD0 started with pid=5 DBW0 started with pid=6 LGWR started with pid=7 CKPT started with pid=8 SMON started with pid=9 RECO started with pid=10 Tue Mar 27 18:53: ARCH: STARTING ARCH PROCESSES ARC0 started with pid=11 ARC0: Archival started ARC1 started with pid=12 ARC1: Archival started Tue Mar 27 18:53: ARCH: STARTING ARCH PROCESSES COMPLETE Tue Mar 27 18:53: ARC0: Thread not mounted Tue Mar 27 18:53: ARC1: Thread not mounted DMON started with pid=13 Starting Broker (DMON) SQL> alter database mount standby database; alter database mount standby database Tue Mar 27 18:54: lmon registered with NM - instance id 1 (internal mem no 0) Tue Mar 27 18:54: Reconfiguration started List of nodes: 0, Global Resource Directory frozen one node partition Communication channels reestablished Master broadcasted resource hash value bitmaps Non-local Process blocks cleaned out Resources and enqueues cleaned out Resources remastered 0 0 GCS shadows traversed, 0 cancelled, 0 closed 0 GCS resources traversed, 0 cancelled set master node info Submitted all remote-enqueue requests

28 Update rdomain variables Dwn-cvts replayed, VALBLKs dubious All grantable enqueues granted 0 GCS shadows traversed, 0 replayed, 0 unopened Submitted all GCS remote-cache requests 0 write requests issued in 0 GCS resources 0 PIs marked suspect, 0 flush PI msgs Tue Mar 27 18:54: Reconfiguration complete Post SMON to start 1st pass IR Tue Mar 27 18:55: Successful mount of redo thread 1, with mount id Tue Mar 27 18:55: Standby Database mounted. Completed: alter database mount standby database SQL> recover managed standby database disconnect; Tue Mar 27 18:56: ALTER DATABASE RECOVER managed standby database disconnect Attempt to start background Managed Standby Recovery process MRP0 started with pid=15 MRP0: Background Managed Standby Recovery process started Starting datafile 1 recovery in thread 1 sequence 44 Datafile 1: '/ora9/oradata/gd9a/system01.dbf' Starting datafile 2 recovery in thread 1 sequence 44 Datafile 2: '/ora9/oradata/gd9a/undotbs01.dbf' Starting datafile 3 recovery in thread 1 sequence 44 Datafile 3: '/ora9/oradata/gd9a/indx01.dbf' Starting datafile 4 recovery in thread 1 sequence 44 Datafile 4: '/ora9/oradata/gd9a/tools01.dbf' Starting datafile 5 recovery in thread 1 sequence 44 Datafile 5: '/ora9/oradata/gd9a/users01.dbf' Media Recovery Waiting for thread 1 seq# 44 Tue Mar 27 18:56: Completed: ALTER DATABASE RECOVER managed standby database d SQL> select database_role,protection_mode from v$database; DATABASE_ROLE PROTECTION_MODE PHYSICAL STANDBY MAXIMUM PROTECTION (New Primary DB) [sf-b:ora9:/ora9/product/920/dbs]$ vi initgd9a.ora log_archive_dest_2='service=gd9a MANDATORY LGWR SYNC AFFIRM' #fal_server=sgd9a #fal_client=gd9a #lock_name_space=sgd9a 수정 SQL> startup === new primary alert log === Tue Mar 27 18:59: Starting ORACLE instance (normal) Tue Mar 27 18:59: Global Enqueue Service Resources = 64, pool = 2 Tue Mar 27 18:59: Global Enqueue Service Enqueues = 128 LICENSE_MAX_SESSION = 0 LICENSE_SESSIONS_WARNING = 0 GES IPC: Receivers 1 Senders

29 GES IPC: Buffers Receive 1000 Send 530 Reserve 300 GES IPC: Msg Size Regular 432 Batch 2048 SCN scheme 3 Using log_archive_dest parameter default value LICENSE_MAX_USERS = 0 SYS auditing is disabled Starting up ORACLE RDBMS Version: System parameters with non-default values: processes = 150 timed_statistics = TRUE shared_pool_size = large_pool_size = java_pool_size = 0 control_files = /ora9/oradata/gd9a/standby.ctl db_block_size = 8192 db_cache_size = compatible = remote_archive_enable = TRUE log_archive_start = TRUE log_archive_dest_1 = location=/ora9/oradata/gd9a/archive log_archive_dest_2 = SERVICE=GD9A MANDATORY LGWR SYNC AFFIRM log_archive_dest_state_1 = ENABLE log_archive_dest_state_2 = ENABLE log_archive_trace = 127 log_archive_format = %t_%s.dbf db_file_multiblock_read_count= 16 fast_start_mttr_target = 300 undo_management = AUTO undo_tablespace = UNDOTBS1 undo_retention = remote_login_passwordfile= EXCLUSIVE db_domain = instance_name = GD9A service_names = SGD9A hash_join_enabled = TRUE background_dump_dest = /ora9/admin/gd9a/bdump user_dump_dest = /ora9/admin/gd9a/udump core_dump_dest = /ora9/admin/gd9a/cdump sort_area_size = db_name = GD9A open_cursors = 300 star_transformation_enabled= FALSE query_rewrite_enabled = FALSE pga_aggregate_target = dg_broker_start = TRUE Tue Mar 27 18:59: cluster interconnect IPC version:oracle UDP/IP IPC Vendor 1 proto 2 Version 1.0 PMON started with pid=2 DIAG started with pid=3 LMON started with pid=4 LMD0 started with pid=5 DBW0 started with pid=6 LGWR started with pid=7 CKPT started with pid=8 SMON started with pid=9 RECO started with pid=10 Tue Mar 27 18:59: ARCH: STARTING ARCH PROCESSES ARC0 started with pid=11 ARC0: Archival started ARC1 started with pid=12 ARC1: Archival started Tue Mar 27 18:59: ARCH: STARTING ARCH PROCESSES COMPLETE Tue Mar 27 18:59: ARC0: Thread not mounted Tue Mar 27 18:59:

30 ARC1: Thread not mounted DMON started with pid=13 Tue Mar 27 18:59: ALTER DATABASE MOUNT Tue Mar 27 18:59: lmon registered with NM - instance id 1 (internal mem no 0) Tue Mar 27 18:59: Reconfiguration started List of nodes: 0, Global Resource Directory frozen one node partition Communication channels reestablished Master broadcasted resource hash value bitmaps Non-local Process blocks cleaned out Resources and enqueues cleaned out Resources remastered 0 0 GCS shadows traversed, 0 cancelled, 0 closed 0 GCS resources traversed, 0 cancelled set master node info Submitted all remote-enqueue requests Update rdomain variables Dwn-cvts replayed, VALBLKs dubious All grantable enqueues granted 0 GCS shadows traversed, 0 replayed, 0 unopened Submitted all GCS remote-cache requests 0 write requests issued in 0 GCS resources 0 PIs marked suspect, 0 flush PI msgs Tue Mar 27 18:59: Reconfiguration complete Post SMON to start 1st pass IR Tue Mar 27 18:59: Starting Broker (DMON) Tue Mar 27 18:59: Successful mount of redo thread 1, with mount id Tue Mar 27 18:59: Database mounted in Exclusive Mode. Completed: ALTER DATABASE MOUNT Tue Mar 27 18:59: ALTER DATABASE OPEN Tue Mar 27 18:59: LGWR: Primary database is in CLUSTER CONSISTENT mode LGWR: Primary database is in MAXIMUM PROTECTION mode LGWR: Destination LOG_ARCHIVE_DEST_1 is not serviced by LGWR LNS0 started with pid=15 Tue Mar 27 18:59: Assigning activation ID (0x6b9f213c) ****************************************************************** LGWR: Setting 'active' archival for destination LOG_ARCHIVE_DEST_2 ****************************************************************** Creating archive destination LOG_ARCHIVE_DEST_2: 'GD9A' LGWR: Transmitting activation ID 6b9f213c LGWR: Standby redo logfile selected to archive thread 1 sequence 45 LGWR: Beginning to archive log 2 thread 1 sequence 45 Thread 1 advanced to log sequence 45 Thread 1 opened at log sequence 45 Current log# 2 seq# 45 mem# 0: /ora9/oradata/gd9a/redo02.log Successful open of redo thread 1. Tue Mar 27 18:59: ARC1: Evaluating archive log 1 thread 1 sequence 44 ARC1: LGWR is actively archiving destination LOG_ARCHIVE_DEST_2 ARC1: Beginning to archive log 1 thread 1 sequence 44 Creating archive destination LOG_ARCHIVE_DEST_2: 'GD9A' ARC1: Transmitting activation ID 6b9f213c Tue Mar 27 18:59: SMON: enabling cache recovery Tue Mar 27 18:59: Creating archive destination LOG_ARCHIVE_DEST_1: '/ora9/oradata/gd9a/archive/1_44.dbf' Tue Mar 27 18:59:

31 Undo Segment 1 Onlined Undo Segment 2 Onlined Undo Segment 3 Onlined Undo Segment 4 Onlined Undo Segment 5 Onlined Undo Segment 6 Onlined Undo Segment 7 Onlined Undo Segment 8 Onlined Undo Segment 9 Onlined Undo Segment 10 Onlined Successfully onlined Undo Tablespace 1. Dictionary check beginning Dictionary check complete Tue Mar 27 18:59: SMON: enabling tx recovery Tue Mar 27 18:59: Database Characterset is KO16MSWIN949 replication_dependency_tracking turned off (no async multimaster replication found) Completed: ALTER DATABASE OPEN Tue Mar 27 18:59: ARC1: Completed archiving log 1 thread 1 sequence 44 === new standby alert log === Tue Mar 27 18:59: RFS: Successfully opened standby logfile 4: '/ora9/oradata/gd9a/standbylog_11.log' Tue Mar 27 18:59: Media Recovery Log /ora9/oradata/gd9a/archive/1_44.dbf Media Recovery Waiting for thread 1 seq# 45 (in transit) SQL> select database_role,protection_mode from v$database; DATABASE_ROLE PROTECTION_MODE PRIMARY MAXIMUM PROTECTION 3-6 SwitchOver 후 Archive 전송 (New Primary DB) SQL> alter system switch logfile; SQL> alter system switch logfile; SQL> alter system switch logfile; SQL> col error format a20 SQL> select dest_id,status,error from v$archive_dest where dest_id <=2; DEST_ID STATUS ERROR VALID 2 VALID (New Standby DB) [sf-a:ora9:/ora9/oradata/gd9a/archive]$ ls -ltr -rw-r ora9 dba 월 27일 18:59 1_44.dbf -rw-r ora9 dba 월 27일 19:24 1_45.dbf -rw-r ora9 dba 월 27일 19:25 1_46.dbf

32 -rw-r ora9 dba 월 27 일 19:25 1_47. 율 3-7 Failover to standby database (New Primary DB) SQL> shutdown abort === new primary alert log === Tue Mar 27 19:29: Shutting down instance (abort) License high water mark = 1 Instance terminated by USER, pid = 1205 === new standby alert log === Tue Mar 27 19:29: RFS: Possible network disconnect with primary database Tue Mar 27 19:29: RFS: Possible network disconnect with primary database Tue Mar 27 19:29: RFS: Possible network disconnect with primary database (New Standby DB) SQL> alter database recover managed standby database finish; Tue Mar 27 19:32: alter database recover managed standby database finish Tue Mar 27 19:32: Terminal Recovery: request posted Tue Mar 27 19:32: TERMINAL RECOVERY changing datafile format version from to Switching logfile format version from to Terminal Recovery: applying standby redo logs. Terminal Recovery: thread 1 seq# 48 redo required Terminal Recovery: /ora9/oradata/gd9a/standbylog_22.log Identified end-of-redo for thread 1 sequence 48 Incomplete recovery applied all redo ever generated. Recovery completed through change MRP0: Media Recovery Complete Switching logfile format version from to Terminal Recovery: successful completion Tue Mar 27 19:32: ARC0: Evaluating archive log 5 thread 1 sequence 48 ARC0: Beginning to archive log 5 thread 1 sequence 48 Creating archive destination LOG_ARCHIVE_DEST_1: '/ora9/oradata/gd9a/archive/1_48.dbf' ARC0: Completed archiving log 5 thread 1 sequence 48 Tue Mar 27 19:32: Resetting standby activation ID (0x6b9f213c) MRP0: Background Media Recovery process shutdown Tue Mar 27 19:32: Terminal Recovery: completion detected Completed: alter database recover managed standby database fi SQL> alter database commit to switchover to primary; Tue Mar 27 19:33: alter database commit to switchover to primary Tue Mar 27 19:33: ALTER DATABASE COMMIT TO SWITCHOVER TO PRIMARY NORESETLOGS after complete recovery through change Resetting resetlogs activation ID 0 (0x0) Online log 6 of thread 0 was previously cleared Changing control file format version from to

33 RESETLOGS changing datafile format version from to Switchover: Complete - Database shutdown required Completed: alter database commit to switchover to primary SQL> shutdown Tue Mar 27 19:34: Shutting down instance: further logons disabled Shutting down instance (normal) License high water mark = 4 Tue Mar 27 19:34: ALTER DATABASE CLOSE NORMAL ORA-1507 signalled during: ALTER DATABASE CLOSE NORMAL... ARCH: Archiving is disabled Shutting down archive processes Archiving is disabled ARCH 9 state 3 ARCH 8 state 3 Tue Mar 27 19:34: ARCH shutting down Tue Mar 27 19:34: ARCH shutting down Tue Mar 27 19:34: ARC0: Archival stopped Tue Mar 27 19:34: ARC1: Archival stopped Tue Mar 27 19:34: ARCH: Archiving is disabled Shutting down archive processes Archiving is disabled Archive process shutdown avoided: 0 active Shutting down Broker processes Tue Mar 27 19:34: Completed: Broker shutdown SQL> startup Tue Mar 27 19:35: Starting ORACLE instance (normal) Tue Mar 27 19:35: Global Enqueue Service Resources = 64, pool = 2 Tue Mar 27 19:35: Global Enqueue Service Enqueues = 128 LICENSE_MAX_SESSION = 0 LICENSE_SESSIONS_WARNING = 0 GES IPC: Receivers 1 Senders 1 GES IPC: Buffers Receive 1000 Send 530 Reserve 300 GES IPC: Msg Size Regular 432 Batch 2048 SCN scheme 3 Using log_archive_dest parameter default value LICENSE_MAX_USERS = 0 SYS auditing is disabled Starting up ORACLE RDBMS Version: System parameters with non-default values: processes = 150 timed_statistics = TRUE shared_pool_size = large_pool_size = java_pool_size = 0 lock_name_space = SGD9A control_files = /ora9/oradata/gd9a/control01.ctl, /ora9/oradata/gd9a/control02.ctl db_block_size = 8192 db_cache_size = compatible = remote_archive_enable = true log_archive_start = TRUE log_archive_dest_1 = location=/ora9/oradata/gd9a/archive log_archive_dest_state_1 = enable

34 standby_archive_dest = /ora9/oradata/gd9a/archive log_archive_trace = 127 fal_server = SGD9A fal_client = GD9A log_archive_format = %t_%s.dbf db_file_multiblock_read_count= 16 standby_file_management = auto fast_start_mttr_target = 300 instance_number = 1 undo_management = AUTO undo_tablespace = UNDOTBS1 undo_retention = remote_login_passwordfile= EXCLUSIVE db_domain = instance_name = GD9A service_names = GD9A hash_join_enabled = TRUE background_dump_dest = /ora9/admin/gd9a/bdump user_dump_dest = /ora9/admin/gd9a/udump core_dump_dest = /ora9/admin/gd9a/cdump sort_area_size = db_name = GD9A open_cursors = 300 star_transformation_enabled= FALSE query_rewrite_enabled = FALSE pga_aggregate_target = dg_broker_start = TRUE Tue Mar 27 19:35: cluster interconnect IPC version:oracle UDP/IP IPC Vendor 1 proto 2 Version 1.0 PMON started with pid=2 DIAG started with pid=3 LMON started with pid=4 LMD0 started with pid=5 DBW0 started with pid=6 LGWR started with pid=7 CKPT started with pid=8 SMON started with pid=9 RECO started with pid=10 Tue Mar 27 19:35: ARCH: STARTING ARCH PROCESSES ARC0 started with pid=11 ARC0: Archival started ARC1 started with pid=12 ARC1: Archival started Tue Mar 27 19:35: ARCH: STARTING ARCH PROCESSES COMPLETE Tue Mar 27 19:35: ARC0: Thread not mounted Tue Mar 27 19:35: ARC1: Thread not mounted DMON started with pid=13 Tue Mar 27 19:35: ALTER DATABASE MOUNT Tue Mar 27 19:35: WARNING: Setting LOCK_NAME_SPACE on non-standby database can be very dangerous It may even cause database corruption. Use it with caution Tue Mar 27 19:35: lmon registered with NM - instance id 1 (internal mem no 0) Tue Mar 27 19:35: Reconfiguration started List of nodes: 0, Global Resource Directory frozen one node partition Communication channels reestablished Master broadcasted resource hash value bitmaps Non-local Process blocks cleaned out Resources and enqueues cleaned out

35 Resources remastered 0 0 GCS shadows traversed, 0 cancelled, 0 closed 0 GCS resources traversed, 0 cancelled set master node info Submitted all remote-enqueue requests Update rdomain variables Dwn-cvts replayed, VALBLKs dubious All grantable enqueues granted 0 GCS shadows traversed, 0 replayed, 0 unopened Submitted all GCS remote-cache requests 0 write requests issued in 0 GCS resources 0 PIs marked suspect, 0 flush PI msgs Tue Mar 27 19:35: Reconfiguration complete Post SMON to start 1st pass IR Tue Mar 27 19:35: Starting Broker (DMON) Tue Mar 27 19:35: Successful mount of redo thread 1, with mount id Tue Mar 27 19:35: Database mounted in Exclusive Mode. Completed: ALTER DATABASE MOUNT Tue Mar 27 19:35: ALTER DATABASE OPEN Tue Mar 27 19:35: LGWR: Primary database is in CLUSTER CONSISTENT mode Assigning activation ID (0x6b9f82d2) Thread 1 opened at log sequence 49 Current log# 1 seq# 49 mem# 0: /ora9/oradata/gd9a/redo01.log Successful open of redo thread 1. Tue Mar 27 19:35: SMON: enabling cache recovery Tue Mar 27 19:35: Undo Segment 1 Onlined Undo Segment 2 Onlined Undo Segment 3 Onlined Undo Segment 4 Onlined Undo Segment 5 Onlined Undo Segment 6 Onlined Undo Segment 7 Onlined Undo Segment 8 Onlined Undo Segment 9 Onlined Undo Segment 10 Onlined Successfully onlined Undo Tablespace 1. Dictionary check beginning Dictionary check complete Tue Mar 27 19:35: SMON: enabling tx recovery Tue Mar 27 19:35: Database Characterset is KO16MSWIN949 replication_dependency_tracking turned off (no async multimaster replication found) Completed: ALTER DATABASE OPEN SQL> select database_role,protection_mode from v$database; DATABASE_ROLE PROTECTION_MODE PRIMARY MAXIMUM PERFORMANCE

36 참조문서 oracle database9i: administrators student guide - oracle 기술문서 :oracle 9i data guard

37 4. 굿어스 Cinema Day 초대 박찬희씨 ( , 에게연락주세요. 2 차신청기간은 7 월 4 일 ( 수 ) 까지입니다

38 5. Pro-Active Tuning Service 5.1 실제사용자 (End-User) 관점의응답시간튜닝 Pro-active tuning service는사용자관점의모니터링및분석을통하여실제 End-User가느끼는응답시간 (Response Time) 을튜닝합니다. APM(Application Performance Management) 툴을이용하여 End-User의 Request 결과를반환받기까지의모든구간 (Client PC, Internet 구간, FireWall, DNS, Web Server, WAS, DBMS) 을분석하여가장 Delay Time 이많이소요된구간을찾아냅니다. ISP Backb one ISP Client Time Internet Time Firewall Time DNS Time Backend Systems Time 5.2 최상의성능상태로비즈니스고가용성을유지 Pro-Active Tuning Service 매업무단위프로젝트마다참여하여업무적용 (Open) 前문제요소를분석하여튜닝. 단위업무적용 (Open) 후매 3 개월 ( 데이터량갱신주기 ) 마다튜닝포인트를설정, 성능둔화요소를해결. 전사적으로새롭게추가되는업무단위프로젝트의모든 SQL 쿼리를검토및튜닝. 다양한대용량데이터베이스관리 / 튜닝기법을도입하여최적의 DB 상태를 1 년내내상시유지. 전략적튜닝 Factor 를분석, 투자대비효율이높은 Targeting 기법적용. ( 비중도높은 SQL 을튜닝함 )

39 5.3 Knowledge Transfer Pro-Active Tuning Service 는고객의 Business Process 를이해하고시스템을분석한후튜닝하는것으로완료되지않습니다. 실제로고객사환경에서튜닝한내용을그대로실무자들에게전수하여내부임직원의역량을제고시킵니다. 또한, Oracle RDBMS 신버젼의 New Features 를교육함으로써, 이용자 ( 관리자및개발자 ) 가스스로개발업무의효율및생산성을향상시킬수있도록지원합니다. 이외에도 DBMS 관리자를위한관리노하우 ( 고급 Trouble-Shooting, 대용량 DB 처리, 병렬처리등 ) 를전수함으로써, 최상의시스템을최고의기술로유지할수있도록지원합니다. UAS (User Adapted Seminar) 진행사례및내용 (Contents) 개발자를위한 SQL 튜닝실무사례세미나 G 쇼핑몰업체튜닝후실제고객사의튜닝사례를개발자들에게전수하여개발자들이성능을고려한 SQL 을작성할수있도록내부역량을제고시킴. Oracle 10g New Features 세미나 S Global 전자기업 : Oracle 10g 버전으로업그레이드하기전, 신버전의새로운기능과주의사항을전파함으로써, 업그레이드후발생할수있는문제점의사전제거와개발자들이새로운기능을이용함으로써, 개발생산성을향상시킴. K 국가기관 DBMS 관리노하우세미나내부관리자 (DBA,SE) 들을대상으로 DBMS 관리자들이흔히겪을수있는상황에대한 Administration Know-How 와고급 Trouble-Shooting 사례를소개함으로써, 관리기술력을향상시킴. 5.4 Tuning 범위확대 Pro-active tuning service 의제공범위는제한된 Database, 제한된 Server 에국한되지않으며, 고객사전체의 Server+DB 를대상으로그범위를확대함으로써고객사전체 Performance 향상에기여합니다

40 5.5 기대효과 재무적관점 기존 Tuning Service는주로 System Performance 향상에따른업무트레픽감소에초점이맞춰져있었습니다. Pro-actvice 서비스는 Tuning 작업을통한업무처리시간단축뿐만아니라, 업무처리시간단축으로가져올수있는재무적성과를가능하게합니다 서비스관점 단기적성능향상에맞추어진기존 Tuning 서비스는계약된 system 및 Database를서비스대상으로하기때문에전사적인차원의성능향상을기대하기어려웠습니다. Proactive tuning service는계약기간동안주요비즈니스 Factor별로 SLA를정하여 Tuning consulting을수행함으로써서비스자체의안정성을제고할수있습니다

41 5.5.3 사용자관점 Proactive tuning service는계약종료시점작업한 Tuning 산출물을통한기술전수세미나를진행함으로서고객사의사용자가실무에서바로적용가능한기술을전수함과동시에, 계약기간종료후에도 Proactive tuning service를유지할수있는방향을제시합니다 혁신적관점

42 - 42 -

Microsoft Word - dataguard_세미나_v1.8.doc

Microsoft Word - dataguard_세미나_v1.8.doc Oracle9i Dataguard 기술서 작성일 : 2005년 3월 24일업데이트 : 2006년 1월 22일 v1.8 Final 작성자 : LG카드중형서버운영파트 DBA 민연홍 Phone : 016-744-0220 E-Mail : ses0124@hanmail.net 목 차 1. dataguard 개요및아키텍처...2 (1) dataguard 란무엇인가?...2

More information

62

62 2 instance database physical storage 2 1 62 63 tablespace datafiles 2 2 64 1 2 logical view control files datafiles redo log files 65 2 3 9i OMF Oracle Managed Files, OMF 9i 9i / / OMF 9i 66 8 1MB 8 10MB

More information

세미나(장애와복구-수강생용).ppt

세미나(장애와복구-수강생용).ppt DB PLAN Consultant jina6678@yahoo.co.kr 011-864-1858 - - 1. 2. DB 3. - 4. - 5. 6. 1 INSTANCE MMAN RECO RFS MRP ORBn RBAL MMON Dnnn Snnn Data Buffer Cache SGA Stream Pool Shared pool Large Pool PGA Log

More information

목 차

목      차 Oracle 9i Admim 1. Oracle RDBMS 1.1 (System Global Area:SGA) 1.1.1 (Shared Pool) 1.1.2 (Database Buffer Cache) 1.1.3 (Redo Log Buffer) 1.1.4 Java Pool Large Pool 1.2 Program Global Area (PGA) 1.3 Oracle

More information

목차 BUG offline replicator 에서유효하지않은로그를읽을경우비정상종료할수있다... 3 BUG 각 partition 이서로다른 tablespace 를가지고, column type 이 CLOB 이며, 해당 table 을 truncate

목차 BUG offline replicator 에서유효하지않은로그를읽을경우비정상종료할수있다... 3 BUG 각 partition 이서로다른 tablespace 를가지고, column type 이 CLOB 이며, 해당 table 을 truncate ALTIBASE HDB 6.1.1.5.6 Patch Notes 목차 BUG-39240 offline replicator 에서유효하지않은로그를읽을경우비정상종료할수있다... 3 BUG-41443 각 partition 이서로다른 tablespace 를가지고, column type 이 CLOB 이며, 해당 table 을 truncate 한뒤, hash partition

More information

ORANGE FOR ORACLE V4.0 INSTALLATION GUIDE (Online Upgrade) ORANGE CONFIGURATION ADMIN O

ORANGE FOR ORACLE V4.0 INSTALLATION GUIDE (Online Upgrade) ORANGE CONFIGURATION ADMIN O Orange for ORACLE V4.0 Installation Guide ORANGE FOR ORACLE V4.0 INSTALLATION GUIDE...1 1....2 1.1...2 1.2...2 1.2.1...2 1.2.2 (Online Upgrade)...11 1.3 ORANGE CONFIGURATION ADMIN...12 1.3.1 Orange Configuration

More information

PowerPoint Presentation

PowerPoint Presentation Server I/O utilization System I/O utilization V$FILESTAT V$DATAFILE Data files Statspack Performance tools TABLESPACE FILE_NAME PHYRDS PHYBLKRD READTIM PHYWRTS PHYBLKWRT WRITETIM ------------- -----------------------

More information

Tablespace On-Offline 테이블스페이스 온라인/오프라인

Tablespace On-Offline 테이블스페이스 온라인/오프라인 2018/11/10 12:06 1/2 Tablespace On-Offline 테이블스페이스온라인 / 오프라인 목차 Tablespace On-Offline 테이블스페이스온라인 / 오프라인... 1 일반테이블스페이스 (TABLESPACE)... 1 일반테이블스페이스생성하기... 1 테이블스페이스조회하기... 1 테이블스페이스에데이터파일 (DATA FILE) 추가

More information

Slide 1

Slide 1 Enterprise Manager 를활용한 Active Data Guard 강송희 TSC본부 DB 기술팀한국오라클 Agenda Active Data Guard 도입배경 기존 DR 솔루션대비 Active Data Guard 의특장점 Active Data Guard 의구성및동작원리 EM 을이용한설치 EM 을이용한모니터링및관리

More information

오라클 데이터베이스 10g 핵심 요약 노트

오라클 데이터베이스 10g 핵심 요약 노트 1 10g 10g SYSAUX 10g 22 Oracle Database 10g, 10g. 10g. (Grid), 10g.. 10g SYSAUX (ASM, Automatic Storage Management) 10g 10g. g. (DBA).,., 1).,..? 10g,.. (Larry Ellison).. (Leverage Components), (ASM) (

More information

Simplify your Job Automatic Storage Management DB TSC

Simplify your Job Automatic Storage Management DB TSC Simplify your Job Automatic Storage Management DB TSC 1. DBA Challenges 2. ASM Disk group 3. Mirroring/Striping/Rebalancing 4. Traditional vs. ASM 5. ASM administration 6. ASM Summary Capacity in Terabytes

More information

슬라이드 1

슬라이드 1 사례를통해본 ORACLE MAA (Maximum Availability Architecture) 2013. 02. Seungtaek Lee( 放浪 DBA) ORACLE MAA 최고의가용성을보장하기위해 Oracle( 사 ) 의여러솔루션을조합한 Oracle 권고아키텍처 2 ORACLE DB HA Solution Set RAC, Data Guard(ADG), ASM,

More information

Data Guard 기본개념.doc

Data Guard 기본개념.doc Data Guard 개념 (9i R2 9.2.0.1) 김형일 HIKIM000@EMPAL.COM 1 목차 1. DataGuard 개념 3 1.1 Data Guard Architecture 3 1.2 DataGuard 장점 4 1.3 Switch over and Failover 5 1.4 Physical Standby 와 Logical Standby 5 2. Data

More information

Microsoft PowerPoint - Tech-iSeminar_Standby_DataGuard.ppt

Microsoft PowerPoint - Tech-iSeminar_Standby_DataGuard.ppt Standby Database 와 Physical Data Guard Getting the most out of MetaLink 이희열, 이은지, 문상준 한국오라클 ( 주 ) 제품지원실 오라클은 Oracle9i부터 Data Protection과 Disaster Recovery 솔루션으로서 Data Guard를제공합니다. 이는기존의 Standby db를계승하고있지만기능에있어서는매우많은혁신과변경이이루어졌습니다.

More information

Oracle Database 10g: Self-Managing Database DB TSC

Oracle Database 10g: Self-Managing Database DB TSC Oracle Database 10g: Self-Managing Database DB TSC Agenda Overview System Resource Application & SQL Storage Space Backup & Recovery ½ Cost ? 6% 12 % 6% 6% 55% : IOUG 2001 DBA Survey ? 6% & 12 % 6% 6%

More information

슬라이드 1

슬라이드 1 사례를통해본 RMAN (RMAN Case Study) 2013. 02. Seungtaek Lee( 放浪 A) RMAN 백업 Server-Managed Backup(RMAN) Components Target : 백업대상 Catalog : 백업정보가저장되는 RMAN Repository Auxiliary : 백업또는 Target 를 Restore하여여러가지용도로사용하는

More information

<4D F736F F D205BB4EBBBF3C1A4BAB8B1E2BCFA5DB1E2BCFAB9AEBCAD2D524D414EBBE7BFEBBFB9C1A65F39695F313067>

<4D F736F F D205BB4EBBBF3C1A4BAB8B1E2BCFA5DB1E2BCFAB9AEBCAD2D524D414EBBE7BFEBBFB9C1A65F39695F313067> 9i 에서의 RMAN 사용법예제 Author : 여현승 Creation Date : 2009-04-15 Last Updated : Latest Version : 1.0 Updated by Updated date Version < YYYY-MM-DD>

More information

Oracle 11gR2 RAC to RAC Active Dataguard

Oracle 11gR2 RAC to RAC Active Dataguard Oracle 11gR2 RAC to RAC Active DataGuard (with ASM+Rawdevice) Author 강경구 Creation Date 2010-08-05 Last Updated Version 1.0 Copyright(C) 2009 Goodus Inc. All Rights Reserved Version 변경일자변경자 ( 작성자 ) 주요내용

More information

I T C o t e n s P r o v i d e r h t t p : / / w w w. h a n b i t b o o k. c o. k r

I T C o t e n s P r o v i d e r h t t p : / / w w w. h a n b i t b o o k. c o. k r I T C o t e n s P r o v i d e r h t t p : / / w w w. h a n b i t b o o k. c o. k r -------------------------------------------------------------------- -- 1. : ts_cre_bonsa.sql -- 2. :

More information

휠세미나3 ver0.4

휠세미나3 ver0.4 andromeda@sparcs:/$ ls -al dev/sda* brw-rw---- 1 root disk 8, 0 2014-06-09 18:43 dev/sda brw-rw---- 1 root disk 8, 1 2014-06-09 18:43 dev/sda1 brw-rw---- 1 root disk 8, 2 2014-06-09 18:43 dev/sda2 andromeda@sparcs:/$

More information

Advanced Product Service

Advanced Product Service Advanced Oracle Document CONVERT to ASM and Non-ASM Author: Hyun-Ho, Jung Site: http://www.commit.co.kr Email: admin@commit.co.kr cleanto@naver.com Creation Date: 2011-12 - 13 CONVERT to ASM and Non-ASM

More information

MS-SQL SERVER 대비 기능

MS-SQL SERVER 대비 기능 Business! ORACLE MS - SQL ORACLE MS - SQL Clustering A-Z A-F G-L M-R S-Z T-Z Microsoft EE : Works for benchmarks only CREATE VIEW Customers AS SELECT * FROM Server1.TableOwner.Customers_33 UNION ALL SELECT

More information

Microsoft Word - 10g RAC on Win2k.doc

Microsoft Word - 10g RAC on Win2k.doc 10g RAC on Win2K Document Control Date Author Change References 2006-03-30 신종근 초기작성함 1-1 ** Agenda 1. 작업목적 Down-Time 최소화!! 2. Pre-Install 환경 3. CRS Install 4. DBMS S/W Install 5. 9i 10g Upgrade 6. 문제점및주의사항

More information

Jerry Held

Jerry Held DB / TSC Oracle Database 10g (Self-Managing Database) (Common Infrastructure) (Automatic Workload Repository) (Server-generated Alerts) (Automated Maintenance Tasks) (Advisory Framework) (ADDM) (Self-Managing

More information

큰 제목은 18 bold

큰 제목은 18 bold 1. Backup & Recovery 개요 2. Backup 3. Recovery 4. Complete & Incomplete Recovery II - 1 1. Backup & Recovery 개요 Failure 범주 Statement failure - SQL 문수행오류 User Process failure - OS 프로세스의비정상종료 User failure

More information

Tibero

Tibero Tibero 백업 & 복구가이드 Copyright 2013 TmaxData Co., Ltd. All Rights Reserved. Copyright Notice Copyright 2013 TmaxData Co., Ltd. All Rights Reserved. 대한민국경기도성남시분당구황새울로 329 번길 5 티맥스빌딩우 ) 463-824 Restricted Rights

More information

The Self-Managing Database : Automatic Health Monitoring and Alerting

The Self-Managing Database : Automatic Health Monitoring and Alerting The Self-Managing Database : Automatic Health Monitoring and Alerting Agenda Oracle 10g Enterpirse Manager Oracle 10g 3 rd Party PL/SQL API Summary (Self-Managing Database) ? 6% 6% 12% 55% 6% Source: IOUG

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 Reasons for Poor Performance Programs 60% Design 20% System 2.5% Database 17.5% Source: ORACLE Performance Tuning 1 SMS TOOL DBA Monitoring TOOL Administration TOOL Performance Insight Backup SQL TUNING

More information

단계

단계 본문서에서는 Tibero RDBMS 운영중에발생할수있는장애상황을가정하여각유형별장애상황에대해 Tibero 에서지원하고있는백업및복구방법을알아본다. Contents 1. BACKUP & RECOVERY 개요... 4 1.1. BACKUP( 백업 )... 4 1.2. RECOVERY( 복구 )... 4 2. BACKUP... 5 2.1. 백업형태... 5 2.1.1.

More information

Microsoft PowerPoint - Tech-iSeminar_Managing_Tablespace.ppt

Microsoft PowerPoint - Tech-iSeminar_Managing_Tablespace.ppt Tablespace 의관리 Getting the most out of MetaLink 최창권, 김주연 제품지원실한국오라클 ( 주 ) 한국오라클에서주최하는 Technical iseminar DATABASE의 tablespace 이해 에참석해주신여러분께감사드립니다. 저는한국오라클제품지원실에근무하는최창권입니다. 오늘세미나에서는 ORACLE database의논리적인저장소역할을하는

More information

PowerChute Personal Edition v3.1.0 에이전트 사용 설명서

PowerChute Personal Edition v3.1.0 에이전트 사용 설명서 PowerChute Personal Edition v3.1.0 990-3772D-019 4/2019 Schneider Electric IT Corporation Schneider Electric IT Corporation.. Schneider Electric IT Corporation,,,.,. Schneider Electric IT Corporation..

More information

oracle9i_newfeatures.PDF

oracle9i_newfeatures.PDF Oracle 9i .?.?.? DB.? Language.?.?.? (DW,OLAP,MINING,OLTP ) DB.?.? Technology Evolution High Availability Scalability Manageability Development Platform Business Intelligence Technology Evolution Technology

More information

MySQL-Ch10

MySQL-Ch10 10 Chapter.,,.,, MySQL. MySQL mysqld MySQL.,. MySQL. MySQL....,.,..,,.,. UNIX, MySQL. mysqladm mysqlgrp. MySQL 608 MySQL(2/e) Chapter 10 MySQL. 10.1 (,, ). UNIX MySQL, /usr/local/mysql/var, /usr/local/mysql/data,

More information

Oracle Database 12c High Availability

Oracle Database 12c High Availability Maximize Availability With Oracle Database 12c 김지훈수석컨설턴트 Tech Sales Consulting / 한국오라클 james.kim@oracle.com 1 Copyright 2013, Oracle and/or its affiliates. All rights reserved. Oracle Database 12c Extreme

More information

Document Server Information Items Description Test Date 2011 / 05 / 31 CPU Intel(R) Xeon(R) CPU 2.40GHz X 8 Main Memory 1GB O/S version OEL 5.

Document Server Information Items Description Test Date 2011 / 05 / 31 CPU Intel(R) Xeon(R) CPU 2.40GHz X 8 Main Memory 1GB O/S version OEL 5. 11g 에서향상된 ASMCMD-CP 기능 (Oracle 11g R1 11.1.0.7) Author: Hyun-Ho, Jung Job: Oracle DBA Site: http://www.commit.co.kr Email: admin@commit.co.kr cleanto@naver.com Creation Date: 2011-05-31 Document Server

More information

CD-RW_Advanced.PDF

CD-RW_Advanced.PDF HP CD-Writer Program User Guide - - Ver. 2.0 HP CD-RW Adaptec Easy CD Creator Copier, Direct CD. HP CD-RW,. Easy CD Creator 3.5C, Direct CD 3.0., HP. HP CD-RW TEAM ( 02-3270-0803 ) < > 1. CD...3 CD...5

More information

Remote UI Guide

Remote UI Guide Remote UI KOR Remote UI Remote UI PDF Adobe Reader/Adobe Acrobat Reader. Adobe Reader/Adobe Acrobat Reader Adobe Systems Incorporated.. Canon. Remote UI GIF Adobe Systems Incorporated Photoshop. ..........................................................

More information

Microsoft PowerPoint - Linux_10gRAC_3Node

Microsoft PowerPoint - Linux_10gRAC_3Node Linux 환경에서 3 Node 10g RAC 구성및 Data 이관하기 일시 : 2006. 08. 10 Contents I. RAC 구성환경및전체순서 II. Volume 및 Server 환경 Setup III. CRS 및 DB S/W 설치 IV. CRS 및 DB S/W Patchset V. File-System DBF raw-device 이관 VI. Sinlge

More information

Contents 1. Oracle Recovery Manager(RMAN) RMAN이란? RMAN의특징 RMAN의 Channel과 Media Management RMAN CONFIGURE COMMAND.

Contents 1. Oracle Recovery Manager(RMAN) RMAN이란? RMAN의특징 RMAN의 Channel과 Media Management RMAN CONFIGURE COMMAND. Goodus 기술노트 [40 회 ] Recovery Manager(RMAN) Author Author Job Title 김상국 차장 Creation Date 2009-04-30 Last Updated 2009-04-30 Version 1.0 Copyright(C) 2004 Goodus Inc. All Rights Reserved Contents 1. Oracle

More information

Oracle9i Real Application Clusters

Oracle9i Real Application Clusters Senior Sales Consultant Oracle Corporation Oracle9i Real Application Clusters Agenda? ? (interconnect) (clusterware) Oracle9i Real Application Clusters computing is a breakthrough technology. The ability

More information

untitled

untitled Push... 2 Push... 4 Push... 5 Push... 13 Push... 15 1 FORCS Co., LTD A Leader of Enterprise e-business Solution Push (Daemon ), Push Push Observer. Push., Observer. Session. Thread Thread. Observer ID.

More information

Contents Data Mart 1. 개요 실습방향 테스트위한사전설정 본격실습시작 ) 데이터파일 dd 명령어로 백업수행및유실시키기 ) 장애복구수행 결론...7 페이지 2 / 7

Contents Data Mart 1. 개요 실습방향 테스트위한사전설정 본격실습시작 ) 데이터파일 dd 명령어로 백업수행및유실시키기 ) 장애복구수행 결론...7 페이지 2 / 7 ( 참 ) 본상단부머리말에있는 Data Mart 는본문서작성자의블로그이름입니다 dd 명령어를 이용한백업수행 최소개념이해 본문서의 pdf 문서는다음 URL 참조 http://mindata.tistory.com/55 Version 변경일자 ( 작성일자 ) 변경자 ( 작성자 ) 주요내용 1 2013.4.3 김민기 최초작성 2 3 페이지 1 / 7 Contents

More information

문서 제목

문서 제목 1 : Oracle9i JRE(Java Runtime Environment) OUI(Oracle Universal Installer) OS 25MB Memory 512 MB RAM # grep MemTotal /proc/meminfo Swap Space RAM 2 400 MB # /sbin/swapon s CD-ROM Drive Disk Space Temporary

More information

untitled

untitled (shared) (integrated) (stored) (operational) (data) : (DBMS) :, (database) :DBMS File & Database - : - : ( : ) - : - : - :, - DB - - -DBMScatalog meta-data -DBMS -DBMS - -DBMS concurrency control E-R,

More information

# Old State Mew State Trigger Actions 1 - TCP/IP NOT CONNECTED Initialization 2 TCP/IP NOT HSMS NOT TCP/IP Connect Succeeds: CONNECTED SELECTED 1. TCP/IP "accecpt" succeeds. Start T7 timeout 1. Cancel

More information

13주-14주proc.PDF

13주-14주proc.PDF 12 : Pro*C/C++ 1 2 Embeded SQL 3 PRO *C 31 C/C++ PRO *C NOT! NOT AND && AND OR OR EQUAL == = SQL,,, Embeded SQL SQL 32 Pro*C C SQL Pro*C C, C Pro*C, C C 321, C char : char[n] : n int, short, long : float

More information

Microsoft Word - 기술노트[23회] Logminer.doc

Microsoft Word - 기술노트[23회] Logminer.doc Goodus 기술노트 [23 회 ] Logminer Author 서강혁, 정철우 Creation Date 2007-08-30 Last Updated 2007-08-30 Version 1.0 Copyright(C) 2004 Goodus Inc. All Rights Reserved Version 변경일자 변경자 ( 작성자 ) 주요내용 1 2007-08-30 서강혁,

More information

Mango220 Android How to compile and Transfer image to Target

Mango220 Android How to compile and Transfer image to Target Mango220 Android How to compile and Transfer image to Target http://www.mangoboard.com/ http://cafe.naver.com/embeddedcrazyboys Crazy Embedded Laboratory www.mangoboard.com cafe.naver.com/embeddedcrazyboys

More information

PRO1_09E [읽기 전용]

PRO1_09E [읽기 전용] Siemens AG 1999 All rights reserved File: PRO1_09E1 Information and - ( ) 2 3 4 5 Monitor/Modify Variables" 6 7 8 9 10 11 CPU 12 Stop 13 (Forcing) 14 (1) 15 (2) 16 : 17 : Stop 18 : 19 : (Forcing) 20 :

More information

10.ppt

10.ppt : SQL. SQL Plus. JDBC. SQL >> SQL create table : CREATE TABLE ( ( ), ( ),.. ) SQL >> SQL create table : id username dept birth email id username dept birth email CREATE TABLE member ( id NUMBER NOT NULL

More information

最即時的Sybase ASE Server資料庫診斷工具

最即時的Sybase ASE Server資料庫診斷工具 TOAD 9.5 Toad Oracle 料 SQL 料 行 理 SQLprofile Quest Software 了 Oracle -Toad Tools of Oracle Application Developers Toad 了 DBA DBA 理 易 度 Toad 料 SQL PL/SQL Toad Oracle PL/SQL Toad Schema Browser Schema Browser

More information

歯sql_tuning2

歯sql_tuning2 SQL Tuning (2) SQL SQL SQL Tuning ROW(1) ROW(2) ROW(n) update ROW(2) at time 1 & Uncommitted update ROW(2) at time 2 SQLDBA> @ UTLLOCKT WAITING_SESSION TYPE MODE_REQUESTED MODE_HELD LOCK_ID1

More information

6주차.key

6주차.key 6, Process concept A program in execution Program code PCB (process control block) Program counter, registers, etc. Stack Heap Data section => global variable Process in memory Process state New Running

More information

소개 TeraStation 을 구입해 주셔서 감사합니다! 이 사용 설명서는 TeraStation 구성 정보를 제공합니다. 제품은 계속 업데이트되므로, 이 설명서의 이미지 및 텍스트는 사용자가 보유 중인 TeraStation 에 표시 된 이미지 및 텍스트와 약간 다를 수

소개 TeraStation 을 구입해 주셔서 감사합니다! 이 사용 설명서는 TeraStation 구성 정보를 제공합니다. 제품은 계속 업데이트되므로, 이 설명서의 이미지 및 텍스트는 사용자가 보유 중인 TeraStation 에 표시 된 이미지 및 텍스트와 약간 다를 수 사용 설명서 TeraStation Pro II TS-HTGL/R5 패키지 내용물: 본체 (TeraStation) 이더넷 케이블 전원 케이블 TeraNavigator 설치 CD 사용 설명서 (이 설명서) 제품 보증서 www.buffalotech.com 소개 TeraStation 을 구입해 주셔서 감사합니다! 이 사용 설명서는 TeraStation 구성 정보를

More information

MAX+plus II Getting Started - 무작정따라하기

MAX+plus II Getting Started - 무작정따라하기 무작정 따라하기 2001 10 4 / Version 20-2 0 MAX+plus II Digital, Schematic Capture MAX+plus II, IC, CPLD FPGA (Logic) ALTERA PLD FLEX10K Series EPF10K10QC208-4 MAX+plus II Project, Schematic, Design Compilation,

More information

NoSQL

NoSQL MongoDB Daum Communications NoSQL Using Java Java VM, GC Low Scalability Using C Write speed Auto Sharding High Scalability Using Erlang Read/Update MapReduce R/U MR Cassandra Good Very Good MongoDB Good

More information

Connection 8 22 UniSQLConnection / / 9 3 UniSQL OID SET

Connection 8 22 UniSQLConnection / / 9 3 UniSQL OID SET 135-080 679-4 13 02-3430-1200 1 2 11 2 12 2 2 8 21 Connection 8 22 UniSQLConnection 8 23 8 24 / / 9 3 UniSQL 11 31 OID 11 311 11 312 14 313 16 314 17 32 SET 19 321 20 322 23 323 24 33 GLO 26 331 GLO 26

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 Spider For MySQL 실전사용기 피망플러스유닛최윤묵 Spider For MySQL Data Sharding By Spider Storage Engine http://spiderformysql.com/ 성능 8 만 / 분 X 4 대 32 만 / 분 많은 DB 중에왜 spider 를? Source: 클라우드컴퓨팅구 선택의기로 Consistency RDBMS

More information

초보자를 위한 분산 캐시 활용 전략

초보자를 위한 분산 캐시 활용 전략 초보자를위한분산캐시활용전략 강대명 charsyam@naver.com 우리가꿈꾸는서비스 우리가꿈꾸는서비스 우리가꿈꾸는서비스 우리가꿈꾸는서비스 그러나현실은? 서비스에필요한것은? 서비스에필요한것은? 핵심적인기능 서비스에필요한것은? 핵심적인기능 서비스에필요한것은? 핵심적인기능 서비스에필요한것은? 적절한기능 서비스안정성 트위터에매일고래만보이면? 트위터에매일고래만보이면?

More information

untitled

untitled PowerBuilder 連 Microsoft SQL Server database PB10.0 PB9.0 若 Microsoft SQL Server 料 database Profile MSS 料 (Microsoft SQL Server database interface) 行了 PB10.0 了 Sybase 不 Microsoft 料 了 SQL Server 料 PB10.0

More information

solution map_....

solution map_.... SOLUTION BROCHURE RELIABLE STORAGE SOLUTIONS ETERNUS FOR RELIABILITY AND AVAILABILITY PROTECT YOUR DATA AND SUPPORT BUSINESS FLEXIBILITY WITH FUJITSU STORAGE SOLUTIONS kr.fujitsu.com INDEX 1. Storage System

More information

OPCTalk for Hitachi Ethernet 1 2. Path. DCOMwindow NT/2000 network server. Winsock update win95. . . 3 Excel CSV. Update Background Thread Client Command Queue Size Client Dynamic Scan Block Block

More information

본문서는 초급자들을 대상으로 최대한 쉽게 작성하였습니다. 본문서에서는 설치방법만 기술했으며 자세한 설정방법은 검색을 통하시기 바랍니다. 1. 설치개요 워드프레스는 블로그 형태의 홈페이지를 빠르게 만들수 있게 해 주는 프로그램입니다. 다양한 기능을 하는 플러그인과 디자인

본문서는 초급자들을 대상으로 최대한 쉽게 작성하였습니다. 본문서에서는 설치방법만 기술했으며 자세한 설정방법은 검색을 통하시기 바랍니다. 1. 설치개요 워드프레스는 블로그 형태의 홈페이지를 빠르게 만들수 있게 해 주는 프로그램입니다. 다양한 기능을 하는 플러그인과 디자인 스마일서브 CLOUD_Virtual 워드프레스 설치 (WORDPRESS INSTALL) 스마일서브 가상화사업본부 Update. 2012. 09. 04. 본문서는 초급자들을 대상으로 최대한 쉽게 작성하였습니다. 본문서에서는 설치방법만 기술했으며 자세한 설정방법은 검색을 통하시기 바랍니다. 1. 설치개요 워드프레스는 블로그 형태의 홈페이지를 빠르게 만들수 있게

More information

PowerPoint Presentation

PowerPoint Presentation Data Protection Rapid Recovery x86 DR Agent based Backup - Physical Machine - Virtual Machine - Cluster Agentless Backup - VMware ESXi Deploy Agents - Windows - AD, ESXi Restore Machine - Live Recovery

More information

Microsoft Word - Oracle Wait 분석 테크닉.doc

Microsoft Word - Oracle Wait 분석 테크닉.doc Reviewed by Oracle Certified Master Korea Community ( http://www.ocmkorea.com http://cafe.daum.net/oraclemanager ) Oracle Wait 분석테크닉 (by Donald K. Burleson) 오라클은현재진행중인오라클트랜잭션의 wait상태에대한정보를자세히제공하는 v$session_wait와

More information

Tina Admin

Tina Admin 유니원아이앤씨 DB 기술지원팀 2015 년 09 월 09 일 문서정보 프로젝트명 TTS (Transportable Tablespace) 서브시스템명 버전 1.0 문서명 TTS (Transportable Tablespace) 작성일 2015-08-16 작성자 김성한 최종수정일 2015-09-09 문서번호 UNIONE-201509091051-KSH 재개정이력 일자내용수정인버전

More information

SMB_ICMP_UDP(huichang).PDF

SMB_ICMP_UDP(huichang).PDF SMB(Server Message Block) UDP(User Datagram Protocol) ICMP(Internet Control Message Protocol) SMB (Server Message Block) SMB? : Microsoft IBM, Intel,. Unix NFS. SMB client/server. Client server request

More information

Sena Device Server Serial/IP TM Version

Sena Device Server Serial/IP TM Version Sena Device Server Serial/IP TM Version 1.0.0 2005. 3. 7. Release Note Revision Date Name Description V1.0.0 2005-03-7 HJ Jeon Serial/IP 4.3.2 ( ) 210 137-130, : (02) 573-5422 : (02) 573-7710 email: support@sena.com

More information

Mars OS 1.0.2 System Administration Guide

Mars OS 1.0.2 System Administration Guide Mars OS 1.0.2 시스템 관리 가이드 NetApp, Inc. www.netapp.com/kr 부품 번호:215-09731_A0 2015년 2월 4일 수요일 2 목차 목차 Mars OS 정보 12 Mars OS의 기능 13 고성능 13 업계 최고의 스토리지 효율성 13 시스템 모니터링 13 비휘발성 메모리를 사용하여 안정성 및 성능 향상 13 클러스터링

More information

AKG 설 맞이 사내 특판 이벤트

AKG 설 맞이 사내 특판 이벤트 ORACLE RAC 설치매뉴얼 (11g+HACMP 6.1+RAWDEVICE) OTS 유명수, 정명호 2015.08.04 Contents 1. HACMP 설치 2. HACMP 설정 3. 사전준비사항 4. Grid 설치 5. DB 엔진설치 6. DB 생성 7. 설치확인및설정사항 1. HACMP 설치 (1/5) HACMP S/W 를특정디렉토리에압축해제 smit installp

More information

Web Application Hosting in the AWS Cloud Contents 개요 가용성과 확장성이 높은 웹 호스팅은 복잡하고 비용이 많이 드는 사업이 될 수 있습니다. 전통적인 웹 확장 아키텍처는 높은 수준의 안정성을 보장하기 위해 복잡한 솔루션으로 구현

Web Application Hosting in the AWS Cloud Contents 개요 가용성과 확장성이 높은 웹 호스팅은 복잡하고 비용이 많이 드는 사업이 될 수 있습니다. 전통적인 웹 확장 아키텍처는 높은 수준의 안정성을 보장하기 위해 복잡한 솔루션으로 구현 02 Web Application Hosting in the AWS Cloud www.wisen.co.kr Wisely Combine the Network platforms Web Application Hosting in the AWS Cloud Contents 개요 가용성과 확장성이 높은 웹 호스팅은 복잡하고 비용이 많이 드는 사업이 될 수 있습니다. 전통적인

More information

Copyright 2012, Oracle and/or its affiliates. All rights reserved.,.,,,,,,,,,,,,.,...,. U.S. GOVERNMENT END USERS. Oracle programs, including any oper

Copyright 2012, Oracle and/or its affiliates. All rights reserved.,.,,,,,,,,,,,,.,...,. U.S. GOVERNMENT END USERS. Oracle programs, including any oper Windows Netra Blade X3-2B( Sun Netra X6270 M3 Blade) : E37790 01 2012 9 Copyright 2012, Oracle and/or its affiliates. All rights reserved.,.,,,,,,,,,,,,.,...,. U.S. GOVERNMENT END USERS. Oracle programs,

More information

10X56_NWG_KOR.indd

10X56_NWG_KOR.indd 디지털 프로젝터 X56 네트워크 가이드 이 제품을 구입해 주셔서 감사합니다. 본 설명서는 네트워크 기능 만을 설명하기 위한 것입니다. 본 제품을 올바르게 사 용하려면 이 취급절명저와 본 제품의 다른 취급절명저를 참조하시기 바랍니다. 중요한 주의사항 이 제품을 사용하기 전에 먼저 이 제품에 대한 모든 설명서를 잘 읽어 보십시오. 읽은 뒤에는 나중에 필요할 때

More information

Chapter 1

Chapter 1 3 Oracle 설치 Objectives Download Oracle 11g Release 2 Install Oracle 11g Release 2 Download Oracle SQL Developer 4.0.3 Install Oracle SQL Developer 4.0.3 Create a database connection 2 Download Oracle 11g

More information

Microsoft Word - Oracle10gDB ±âº»¿î¿µÁöħ¼�.doc

Microsoft Word - Oracle10gDB ±âº»¿î¿µÁöħ¼�.doc Oracle 10g 기본운영지침서 - 국립중앙과학관실무자를위한운영지침서 Author : 엄진우 ( jinwoo.eom@oracle.com ) Creation Date : Last Updated : Control Number : Version : 2005년 1월 10일 2005년 1월 11일 Approvals:

More information

ODS-FM1

ODS-FM1 OPTICAL DISC ARCHIVE FILE MANAGER ODS-FM1 INSTALLATION GUIDE [Korean] 1st Edition (Revised 4) 상표 Microsoft, Windows 및 Internet Explorer는 미국 및 / 또는 다른 국가에서 Microsoft Corporation 의 등록 상표입 Intel 및 Intel Core

More information

목차 1. 제품 소개... 4 1.1 특징... 4 1.2 개요... 4 1.3 Function table... 5 2. 기능 소개... 6 2.1 Copy... 6 2.2 Compare... 6 2.3 Copy & Compare... 6 2.4 Erase... 6 2

목차 1. 제품 소개... 4 1.1 특징... 4 1.2 개요... 4 1.3 Function table... 5 2. 기능 소개... 6 2.1 Copy... 6 2.2 Compare... 6 2.3 Copy & Compare... 6 2.4 Erase... 6 2 유영테크닉스( 주) 사용자 설명서 HDD014/034 IDE & SATA Hard Drive Duplicator 유 영 테 크 닉 스 ( 주) (032)670-7880 www.yooyoung-tech.com 목차 1. 제품 소개... 4 1.1 특징... 4 1.2 개요... 4 1.3 Function table... 5 2. 기능 소개... 6 2.1 Copy...

More information

경우, TARGET 키워드 (AUXILIARY 키워드아님 ) 를사용하여반드시대기데이터베이스에접속해야 한다. 백업을수행하는동안, 대기데이터베이스는주데이터베이스를대체한다. 논리적대기데이터베이스의백업및복구주데이터베이스에서사용하는동일한방법으로논리적대기데이터베이스를백업할수있다.

경우, TARGET 키워드 (AUXILIARY 키워드아님 ) 를사용하여반드시대기데이터베이스에접속해야 한다. 백업을수행하는동안, 대기데이터베이스는주데이터베이스를대체한다. 논리적대기데이터베이스의백업및복구주데이터베이스에서사용하는동일한방법으로논리적대기데이터베이스를백업할수있다. 12 장. Data Guard 에대한그외고려사항 학습목표 - 물리적대기데이터베이스를가진주데이터베이스의백업 - 논리적대기데이터베이스의백업 - Data Guard 구조에서플래시백데이터베이스기능사용 - 리두정보암호화 - 연쇄리두로그위치구성 물리적대기데이터베이스로백업본해제 RMAN은대기데이터베이스와관련아카이브리두로그들을백업할수있다. 데이터파일들과아카이브리두로그들의대기백업본은주데이터베이스백업본과완전히대체가가능하다.

More information

목차 BUG 문법에맞지않는질의문수행시, 에러메시지에질의문의일부만보여주는문제를수정합니다... 3 BUG ROUND, TRUNC 함수에서 DATE 포맷 IW 를추가지원합니다... 5 BUG ROLLUP/CUBE 절을포함하는질의는 SUBQUE

목차 BUG 문법에맞지않는질의문수행시, 에러메시지에질의문의일부만보여주는문제를수정합니다... 3 BUG ROUND, TRUNC 함수에서 DATE 포맷 IW 를추가지원합니다... 5 BUG ROLLUP/CUBE 절을포함하는질의는 SUBQUE ALTIBASE HDB 6.3.1.10.1 Patch Notes 목차 BUG-45710 문법에맞지않는질의문수행시, 에러메시지에질의문의일부만보여주는문제를수정합니다... 3 BUG-45730 ROUND, TRUNC 함수에서 DATE 포맷 IW 를추가지원합니다... 5 BUG-45760 ROLLUP/CUBE 절을포함하는질의는 SUBQUERY REMOVAL 변환을수행하지않도록수정합니다....

More information

1217 WebTrafMon II

1217 WebTrafMon II (1/28) (2/28) (10 Mbps ) Video, Audio. (3/28) 10 ~ 15 ( : telnet, ftp ),, (4/28) UDP/TCP (5/28) centralized environment packet header information analysis network traffic data, capture presentation network

More information

PowerPoint Presentation

PowerPoint Presentation FORENSIC INSIGHT; DIGITAL FORENSICS COMMUNITY IN KOREA SQL Server Forensic AhnLab A-FIRST Rea10ne unused6@gmail.com Choi Jinwon Contents 1. SQL Server Forensic 2. SQL Server Artifacts 3. Database Files

More information

Commit_Wait / Commit_Logging 두파라미터를통해 Log File Sync 대기시간을감소시킬수있다는것은놀라움과의아함을동시에느낄수있다. 단지파라미터의수정을통해당연히대기해야하는시간을감축한다는것은분명성능을개선해야하는입장에서는놀라운일이될것이다. 반면, 그에따

Commit_Wait / Commit_Logging 두파라미터를통해 Log File Sync 대기시간을감소시킬수있다는것은놀라움과의아함을동시에느낄수있다. 단지파라미터의수정을통해당연히대기해야하는시간을감축한다는것은분명성능을개선해야하는입장에서는놀라운일이될것이다. 반면, 그에따 Commit Wait Class 대기시간감소방안 엑셈컨설팅본부 /DB 컨설팅팀박준연 개요 Wait Class 중 Commit 카테고리에해당하는 Wait Event 에의한대기현상으로 DB 시스템의성능저하현상이발생하는것은종종경험할수있다. 그중대표적인 Wait Event 는 Log File Sync 이다. 실제로대부분의 DB 시스템의 Top 5 Wait Event

More information

디지털포렌식학회 논문양식

디지털포렌식학회 논문양식 ISSN : 1976-5304 http://www.kdfs.or.kr Virtual Online Game(VOG) 환경에서의 디지털 증거수집 방법 연구 이 흥 복, 정 관 모, 김 선 영 * 대전지방경찰청 Evidence Collection Process According to the Way VOG Configuration Heung-Bok Lee, Kwan-Mo

More information

untitled

untitled 1... 2 System... 3... 3.1... 3.2... 3.3... 4... 4.1... 5... 5.1... 5.2... 5.2.1... 5.3... 5.3.1 Modbus-TCP... 5.3.2 Modbus-RTU... 5.3.3 LS485... 5.4... 5.5... 5.5.1... 5.5.2... 5.6... 5.6.1... 5.6.2...

More information

Intra_DW_Ch4.PDF

Intra_DW_Ch4.PDF The Intranet Data Warehouse Richard Tanler Ch4 : Online Analytic Processing: From Data To Information 2000. 4. 14 All rights reserved OLAP OLAP OLAP OLAP OLAP OLAP is a label, rather than a technology

More information

(SW3704) Gingerbread Source Build & Working Guide

(SW3704) Gingerbread Source Build & Working Guide (Mango-M32F4) Test Guide http://www.mangoboard.com/ http://cafe.naver.com/embeddedcrazyboys Crazy Embedded Laboratory www.mangoboard.com cafe.naver.com/embeddedcrazyboys CRZ Technology 1 Document History

More information

Backup Exec

Backup Exec (sjin.kim@veritas.com) www.veritas veritas.co..co.kr ? 24 X 7 X 365 Global Data Access.. 100% Storage Used Terabytes 9 8 7 6 5 4 3 2 1 0 2000 2001 2002 2003 IDC (TB) 93%. 199693,000 TB 2000831,000 TB.

More information

Orcad Capture 9.x

Orcad Capture 9.x OrCAD Capture Workbook (Ver 10.xx) 0 Capture 1 2 3 Capture for window 4.opj ( OrCAD Project file) Design file Programe link file..dsn (OrCAD Design file) Design file..olb (OrCAD Library file) file..upd

More information

PRO1_04E [읽기 전용]

PRO1_04E [읽기 전용] Siemens AG 1999 All rights reserved File: PRO1_04E1 Information and S7-300 2 S7-400 3 EPROM / 4 5 6 HW Config 7 8 9 CPU 10 CPU : 11 CPU : 12 CPU : 13 CPU : / 14 CPU : 15 CPU : / 16 HW 17 HW PG 18 SIMATIC

More information

LCD Display

LCD Display LCD Display SyncMaster 460DRn, 460DR VCR DVD DTV HDMI DVI to HDMI LAN USB (MDC: Multiple Display Control) PC. PC RS-232C. PC (Serial port) (Serial port) RS-232C.. > > Multiple Display

More information

단계

단계 본문서에서는 Tibero RDBMS 에서제공하는 Oracle DB Link 를위한 gateway 설치및설정방법과 Oracle DB Link 사용법을소개한다. Contents 1. TIBERO TO ORACLE DB LINK 개요... 3 1.1. GATEWAY 란... 3 1.2. ORACLE GATEWAY... 3 1.3. GATEWAY 디렉터리구조...

More information

SRC PLUS 제어기 MANUAL

SRC PLUS 제어기 MANUAL ,,,, DE FIN E I N T R E A L L O C E N D SU B E N D S U B M O TIO

More information

Interstage4 설치가이드

Interstage4 설치가이드 Interstage Application Server V501 Operation Guide Internet 1 1 1 FJApache FJApache (WWW (WWW server) server) - - file file - - 2 2 InfoProviderPro InfoProviderPro (WWW (WWW server) server) - - file file

More information

Solaris Express Developer Edition

Solaris Express Developer Edition Solaris Express Developer Edition : 2008 1 Solaris TM Express Developer Edition Solaris OS. Sun / Solaris, Java, Web 2.0,,. Developer Solaris Express Developer Edition System Requirements. 768MB. SPARC

More information

슬라이드 1

슬라이드 1 / 유닉스시스템개요 / 파일 / 프로세스 01 File Descriptor file file descriptor file type unix 에서의파일은단지바이트들의나열임 operating system 은파일에어떤포맷도부과하지않음 파일의내용은바이트단위로주소를줄수있음 file descriptor 는 0 이나양수임 file 은 open 이나 creat 로 file

More information

K7VT2_QIG_v3

K7VT2_QIG_v3 1......... 2 3..\ 4 5 [R] : Enter Raid setup utility 6 Press[A]keytocreateRAID RAID Type: JBOD RAID 0 RAID 1: 2 7 " RAID 0 Auto Create Manual Create: 2 RAID 0 Block Size: 16K 32K

More information

R50_51_kor_ch1

R50_51_kor_ch1 S/N : 1234567890123 Boot Device Priority NumLock [Off] Enable Keypad [By NumLock] Summary screen [Disabled] Boor-time Diagnostic Screen [Disabled] PXE OPROM [Only with F12]

More information

FlashBackt.ppt

FlashBackt.ppt 1. Flashback 목적 Flashback 이란? 사용자실수에의한손상된데이터를 Database 의크기와상관없이복구를할수있는기능이다. 이 Flashback 기능은일반적인복구에서우려되는데이터베이스의크기를걱정하지않아도된다. 보통의사용자실수는커다란시스템장애가수반되며, 이를복구하기위해서는많은자원과시간이필요하다. 하지만 9i 에서지원되느 flashback query

More information

vm-웨어-01장

vm-웨어-01장 Chapter 16 21 (Agenda). (Green),., 2010. IT IT. IT 2007 3.1% 2030 11.1%, IT 2007 1.1.% 2030 4.7%, 2020 4 IT. 1 IT, IT. (Virtualization),. 2009 /IT 2010 10 2. 6 2008. 1970 MIT IBM (Mainframe), x86 1. (http

More information

Oracle hacking 작성자 : 임동현 작성일 2008 년 10 월 11 일 ~ 2008 년 10 월 19 일 신규작성 작성내용

Oracle hacking 작성자 : 임동현 작성일 2008 년 10 월 11 일 ~ 2008 년 10 월 19 일 신규작성 작성내용 Oracle hacking 작성자 : 임동현 (ddongsbrk@naver.com) 작성일 2008 년 10 월 11 일 ~ 2008 년 10 월 19 일 신규작성 작성내용 Skill List 1. Oracle For Pentest 1. Find TNS Listener (Default 1521 port) (with nmap or amap) 2. Get the

More information