Recovery from Corrupted/deleted Undo datafile without backup, after last Clean Shutdown in NOARCHIVE/ARCHIVE mode.

Size: px
Start display at page:

Download "Recovery from Corrupted/deleted Undo datafile without backup, after last Clean Shutdown in NOARCHIVE/ARCHIVE mode."

Transcription

1 Recovery from Corrupted/deleted Undo datafile without backup, after last Clean Shutdown in NOARCHIVE/ARCHIVE mode. After last clean shutdown, while restarting DB we see database not coming up and found datafile to corrupted/deleted. In this case steps remain same for Archive and NoArchive mode. Contents 1) Check DB is NOArchive mode and Clean Shutdown DB ) Corrupt the UNDO datafile Simulate the scenario ) Now Start the DB, and initiate recover database command as below ) Try to Offline the corrupted undo Datafile and open Database ) Change the undo_management to Manual parameters and Restart DB ) Drop undo tablespace ) Create undo TBS, Reset undo_management to AUTO and restart the DB ) Re-check if the Parameters were unset ) Verify the user data and database Page 1 of 8

2 1) Check DB is NOArchive mode and Clean Shutdown DB SQL> select,open_mode,log_mode from v$database; OPEN_MODE LOG_MODE D041 READ WRITE NOARCHIVELOG SQL> archive log list Database log mode No Archive Mode Automatic archival Disabled Archive destination C:\Oracle\oradata\d041\arch Oldest online log sequence 24 Current log sequence 26 SQL> shut immediate; Database closed. Database dismounted. ORACLE instance shut down. 2) Corrupt the UNDO datafile Simulate the scenario C:\Oracle\oradata\d041>dbv FILE=UNDOTBS01.DBF DBVERIFY: Release Production on Sun Dec 29 11:17: Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved. DBVERIFY - Verification starting : FILE = C:\ORACLE\ORADATA\D041\UNDOTBS01.DBF DBVERIFY - Verification complete Total Pages Examined : 2560 Total Pages Processed (Data) : 0 Total Pages Failing (Data) : 0 Total Pages Processed (Index): 0 Total Pages Failing (Index): 0 Total Pages Processed (Other): 168 Total Pages Processed (Seg) : 20 Total Pages Failing (Seg) : 0 Total Pages Empty : 2392 Total Pages Marked Corrupt : 0 Total Pages Influx : 0 Total Pages Encrypted : 0 Highest block SCN : ( ) Now Corrupt Undo file ================================ Manually adding data to undo file to the end of file to simulate corruption. C:\Oracle\oradata\d041>echo A >> UNDOTBS01.DBF C:\Oracle\oradata\d041>dbv FILE=UNDOTBS01.DBF DBVERIFY: Release Production on Sun Dec 29 11:18: Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved. DBV-00600: Fatal Error - [21] [5] [0] [0] OR If you Edit using the Edit plus, and delete some content from middle of file. C:\Oracle\oradata\d041>dbv FILE=UNDOTBS01.DBF DBVERIFY: Release Production on Sun Dec 29 10:35: Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved. DBV-00102: File I/O error on FILE (C:\ORACLE\ORADATA\D041\UNDOTBS01.DBF) during end read operation (7680) Page 2 of 8

3 3) Now Start the DB, and initiate recover database command as below. SQL> startup ORACLE instance started. Total System Global Area bytes Fixed Size bytes Variable Size bytes Database Buffers bytes Redo Buffers bytes Database mounted. ORA-01157: cannot identify/lock data file 3 - see DBWR trace file ORA-01110: data file 3: 'C:\ORACLE\ORADATA\D041\UNDOTBS01.DBF' SQL> select,open_mode,log_mode from v$database; OPEN_MODE LOG_MODE D041 MOUNTED NOARCHIVELOG Whenever DB shuts cleanly, CHECKPOINT_CHANGE# and LAST_CHANGE# must always be sync else they need to do crash/media recovery, as below SQL> set line 200 col LAST_TIME for a25 col name for a45 select,status,checkpoint_change#,last_change#,to_char(last_time,'dd-mon-yyyy HH24:MI:SS') LAST_TIME from v$datafile; STATUS CHECKPOINT_CHANGE# LAST_CHANGE# LAST_TIME C:\ORACLE\ORADATA\D041\SYSTEM01.DBF SYSTEM DEC :58:30 C:\ORACLE\ORADATA\D041\SYSAUX01.DBF DEC :58:30 C:\ORACLE\ORADATA\D041\UNDOTBS01.DBF DEC :58:30 C:\ORACLE\ORADATA\D041\USERS01.DBF DEC :58:30 C:\ORACLE\ORADATA\D041\EXAMPLE01.DBF DEC :58:30 SQL> recover database; ORA-00283: recovery session canceled due to errors ORA-01110: data file 3: 'C:\ORACLE\ORADATA\D041\UNDOTBS01.DBF' ORA-01157: cannot identify/lock data file 3 - see DBWR trace file ORA-01110: data file 3: 'C:\ORACLE\ORADATA\D041\UNDOTBS01.DBF' SQL> set line 200 col error for a20 select * from v$recover_file; FILE# _ ERROR CHANGE# TIME FILE NOT FOUND 0 Page 3 of 8

4 4) Try to Offline the corrupted undo Datafile and open Database. SQL> alter database datafile 3 offline; (Use this for Archive Log Mode) alter database datafile 3 offline * ERROR at line 1: ORA-01145: offline immediate disallowed unless media recovery enabled SQL> alter database datafile 3 offline for drop; (Use this for NOArchive Log Mode) Database altered. SQL> alter database open; Database altered. SQL> select name,open_mode from v$database; OPEN_MODE D041 READ WRITE SQL> select * from v$recover_file; FILE# _ ERROR CHANGE# TIME OFFLINE OFFLINE FILE NOT FOUND 0 SQL> col name for a45 set line 200 select name,status from v$datafile; STATUS C:\ORACLE\ORADATA\D041\SYSTEM01.DBF SYSTEM C:\ORACLE\ORADATA\D041\SYSAUX01.DBF C:\ORACLE\ORADATA\D041\UNDOTBS01.DBF OFFLINE C:\ORACLE\ORADATA\D041\USERS01.DBF C:\ORACLE\ORADATA\D041\EXAMPLE01.DBF SQL> drop tablespace undotbs1 including contents and datafiles; drop tablespace undotbs1 including contents and datafiles * ERROR at line 1: ORA-30013: undo tablespace 'UNDOTBS1' is currently in use On checking parameter undo_management found to be AUTO as below, so it is not all allowing to Drop. SQL> show parameter undo TYPE VALUE undo_management string AUTO Page 4 of 8

5 undo_tablespace string UNDOTBS1 SQL> show parameter rollback_segments TYPE VALUE rollback_segments string 5) Change the undo_management to Manual parameters and Restart DB SQL> alter system set undo_management='manual' scope=spfile; System altered. SQL> alter system set rollback_segments=system scope=spfile; System altered. SQL> shut immediate; Database closed. Database dismounted. ORACLE instance shut down. SQL> Startup ORACLE instance started. Total System Global Area bytes Fixed Size bytes Variable Size bytes Database Buffers bytes Redo Buffers bytes Database mounted. Database opened. SQL> select * from v$recover_file; FILE# _ ERROR CHANGE# TIME OFFLINE OFFLINE FILE NOT FOUND 0 SQL> select name,status from v$datafile; STATUS C:\ORACLE\ORADATA\D041\SYSTEM01.DBF SYSTEM C:\ORACLE\ORADATA\D041\SYSAUX01.DBF C:\ORACLE\ORADATA\D041\UNDOTBS01.DBF OFFLINE C:\ORACLE\ORADATA\D041\USERS01.DBF C:\ORACLE\ORADATA\D041\EXAMPLE01.DBF SQL> SELECT SEGMENT_, XACTS ACTIVE_TX, V.STATUS FROM V$ROLLSTAT V, DBA_ROLLBACK_SEGS WHERE TABLESPACE_ = 'UNDOTBS1' AND SEGMENT_ID = USN; no rows selected Page 5 of 8

6 6) Drop undo tablespace. SQL> drop tablespace undotbs1 including contents and datafiles; Tablespace dropped. SQL> select * from v$rollname ; USN SYSTEM SQL> select SEGMENT_,SEGMENT_ID,status,tablespace_name from dba_rollback_segs ; SEGMENT_ SEGMENT_ID STATUS TABLESPACE_ SYSTEM 0 SYSTEM 7) Create undo TBS, Reset undo_management to AUTO and restart the DB. SQL> select * from v$tablespace; TS# INC BIG FLA ENC SYSTEM YES NO YES 1 SYSAUX YES NO YES 4 USERS YES NO YES 3 TEMP NO NO YES 6 EXAMPLE YES NO YES SQL> create undo tablespace UNDOTBS1 datafile 'C:\ORACLE\ORADATA\D041\UNDOTBS01.DBF' size 20M reuse; Tablespace created. SQL> Alter System set undo_management=auto scope=spfile; System altered. SQL> Alter System Reset rollback_segments; System altered. SQL> show parameter undo TYPE VALUE undo_management string MANUAL undo_retention integer 900 undo_tablespace string UNDOTBS1 SQL> shut immediate; Database closed. Database dismounted. Page 6 of 8

7 ORACLE instance shut down. SQL> startup ORACLE instance started. Total System Global Area bytes Fixed Size bytes Variable Size bytes Database Buffers bytes Redo Buffers bytes Database mounted. Database opened. 8) Re-check if the Parameters were unset. SQL> show parameter rollback_segments TYPE VALUE rollback_segments string SQL> show parameter undo TYPE VALUE undo_management string AUTO undo_retention integer 900 undo_tablespace string UNDOTBS1 SQL> select SEGMENT_,SEGMENT_ID,status,tablespace_name from dba_rollback_segs ; SEGMENT_ SEGMENT_ID STATUS TABLESPACE_ SYSTEM 0 SYSTEM _SYSSMU20_ $ 20 UNDOTBS1 _SYSSMU19_ $ 19 UNDOTBS1 _SYSSMU18_ $ 18 UNDOTBS1 _SYSSMU17_ $ 17 UNDOTBS1 _SYSSMU16_ $ 16 UNDOTBS1 _SYSSMU15_ $ 15 UNDOTBS1 _SYSSMU14_ $ 14 UNDOTBS1 _SYSSMU13_ $ 13 UNDOTBS1 _SYSSMU12_ $ 12 UNDOTBS1 _SYSSMU11_ $ 11 UNDOTBS1 11 rows selected. SQL> SELECT SEGMENT_, XACTS ACTIVE_TX, V.STATUS FROM V$ROLLSTAT V, DBA_ROLLBACK_SEGS WHERE TABLESPACE_ = 'UNDOTBS1' AND SEGMENT_ID = USN; SEGMENT_ ACTIVE_TX STATUS _SYSSMU11_ $ 0 _SYSSMU12_ $ 0 _SYSSMU13_ $ 0 _SYSSMU14_ $ 0 _SYSSMU15_ $ 0 Page 7 of 8

8 _SYSSMU16_ $ _SYSSMU17_ $ _SYSSMU18_ $ _SYSSMU19_ $ _SYSSMU20_ $ rows selected. 9) Verify the user data and database. SQL> conn scott/tiger Connected. SQL> set line 200 select * from emp; EMPNO E JOB MGR HIREDATE SAL COMM DEPTNO SMITH CLERK DEC ALLEN SALESMAN FEB WARD SALESMAN FEB JONES MANAGER APR MARTIN SALESMAN SEP BLAKE MANAGER MAY CLARK MANAGER JUN SCOTT ANALYST APR KING PRESIDENT 17-NOV TURNER SALESMAN SEP ADAMS CLERK MAY JAMES CLERK DEC FORD ANALYST DEC MILLER CLERK JAN rows selected. SQL> col name for a45 select name,status from v$datafile; STATUS C:\ORACLE\ORADATA\D041\SYSTEM01.DBF SYSTEM C:\ORACLE\ORADATA\D041\SYSAUX01.DBF C:\ORACLE\ORADATA\D041\UNDOTBS01.DBF C:\ORACLE\ORADATA\D041\USERS01.DBF C:\ORACLE\ORADATA\D041\EXAMPLE01.DBF SQL> select * from v$recover_file; no rows selected Page 8 of 8

12. User-managed and RMAN-based backups.

12. User-managed and RMAN-based backups. 12. User-managed and RMAN-based backups. Abstract: A physical backup is a copy of the physical database files, and it can be performed in two ways. The first is through the Recovery Manager (RMAN) tool

More information

Oracle 12c Recovering a lost /corrupted table from RMAN Backup after user error or application issue

Oracle 12c Recovering a lost /corrupted table from RMAN Backup after user error or application issue Oracle 12c Recovering a lost /corrupted table from RMAN Backup after user error or application issue Oracle 12c has automated table level recovery using RMAN. If you lose a table after user error or get

More information

Database Recovery For Newbies

Database Recovery For Newbies Database Recovery For Newbies Paper #521 Bonnie Bizzaro, Susan McClain Objectives Provide basic understanding of recovery processes and terms Define different types of recovery Discuss common recovery

More information

Recover Oracle Database upon losing all Control Files

Recover Oracle Database upon losing all Control Files Recover Oracle Database upon losing all Control Files R.Wang Oct 19, 07 (Firstly, published at OraclePoint.com ) Preface: This is experimental case study about recovering oracle database upon losing all

More information

Oracle 11gR2 : Recover dropped tablespace using RMAN tablespace point in time recovery

Oracle 11gR2 : Recover dropped tablespace using RMAN tablespace point in time recovery Oracle 11gR2 : Recover dropped tablespace using RMAN tablespace point in time recovery Mohamed Azar Oracle DBA http://mohamedazar.wordpress.com 1 Mohamed Azar http://mohamedazar.wordpress.com This is new

More information

Recreate Physical Standby Database after Recovery of Primary Database

Recreate Physical Standby Database after Recovery of Primary Database Recreate Physical Standby Database after Recovery of Primary Database In Oracle 11g it is possible to create a Physical Standby Database from the Primary Database using RMAN. Furthermore, the same procedure

More information

If you have not multiplexed your online redo logs, then you are only left with incomplete recovery. Your steps are as follows:

If you have not multiplexed your online redo logs, then you are only left with incomplete recovery. Your steps are as follows: How to Recover lost online redo logs? Author A.Kishore If you lose the current online redo log, then you will not be able to recover the information in that online redo log. This is one reason why redo

More information

Strategies for Oracle Database Backup and Recovery: Case Studies. Mingguang Xu

Strategies for Oracle Database Backup and Recovery: Case Studies. Mingguang Xu Strategies for Oracle Database Backup and Recovery: Case Studies Mingguang Xu Office of Institutional Research University of Georgia www.oir.uga.edu/oirpres.html Oracle Files Oracle requires the following

More information

RMAN BACKUP & RECOVERY. Recovery Manager. Veeratteshwaran Sridhar

RMAN BACKUP & RECOVERY. Recovery Manager. Veeratteshwaran Sridhar RMAN Recovery Manager BACKUP & RECOVERY Veeratteshwaran Sridhar Why Backup & Recovery? The purpose of a backup and recovery strategy is to protect the database against data loss and reconstruct the database

More information

Backup/Restore Oracle 8i/9i/10g

Backup/Restore Oracle 8i/9i/10g This chapter will describe in details how Software backup your Oracle Database Server and how you can restore an Oracle database using the backup files. Table of Content 1. Requirements 2. Overview 3.

More information

Oracle TDE Tablespace Encryption

Oracle TDE Tablespace Encryption Best Practice Document Version: 1.0 2015-02-04 Configuration Guide Document History Version Date Change 1.0 Document creation 2 2015 SAP SE or an SAP affiliate company. All rights reserved.

More information

Backup Types. Backup and Recovery. Categories of Failures. Issues. Logical. Cold. Hot. Physical With. Statement failure

Backup Types. Backup and Recovery. Categories of Failures. Issues. Logical. Cold. Hot. Physical With. Statement failure Backup Types Logical Backup and Recovery Cold Hot Physical With Without Issues Categories of Failures Protectthe database from numerous types of failures Increase Mean-Time-Between-Failures (MTBF) Decrease

More information

RMAN What is Rman Why use Rman Understanding The Rman Architecture Taking Backup in Non archive Backup Mode Taking Backup in archive Mode

RMAN What is Rman Why use Rman Understanding The Rman Architecture Taking Backup in Non archive Backup Mode Taking Backup in archive Mode RMAN - What is Rman - Why use Rman - Understanding The Rman Architecture - Taking Backup in Non archive Backup Mode - Taking Backup in archive Mode - Enhancement in 10g For Rman - 9i Enhancement For Rman

More information

11. Configuring the Database Archiving Mode.

11. Configuring the Database Archiving Mode. 11. Configuring the Database Archiving Mode. Abstract: Configuring an Oracle database for backup and recovery can be complex. At a minimum, you must understand the archive process, the initialization parameters

More information

DOCUMENTATION ORACLE BACKUP & RESTORE OPERATIONS

DOCUMENTATION ORACLE BACKUP & RESTORE OPERATIONS DOCUMENTATION Copyright Notice The use and copying of this product is subject to a license agreement. Any other use is prohibited. No part of this publication may be reproduced, transmitted, transcribed,

More information

Oracle 10g Feature: RMAN Incrementally Updated Backups

Oracle 10g Feature: RMAN Incrementally Updated Backups Oracle 10g Feature: RMAN Incrementally Updated Backups Author: Dave Anderson, SkillBuilders Date: September 13, 2004 Introduction This article explains one of the features presented by Dave Anderson at

More information

Oracle Backup and Recover 101. Osborne Press ISBN 0-07-219461-8

Oracle Backup and Recover 101. Osborne Press ISBN 0-07-219461-8 Oracle Backup and Recover 101 Osborne Press ISBN 0-07-219461-8 First Printing Personal Note from the Authors Thanks for your purchase of our book Oracle Backup & Recovery 101. In our attempt to provide

More information

PRM For Oracle Database 3.1 GUI:

PRM For Oracle Database 3.1 GUI: Case Study on PRM/DUL Recovery For Oracle Database PRM is designed for Enterprise Database Recovery, which includes all Oracle DUL data recovery functionalities, and also easy-to-use GUI. PRM For Oracle

More information

Delivery Method: Instructor-led, group-paced, classroom-delivery learning model with structured, hands-on activities.

Delivery Method: Instructor-led, group-paced, classroom-delivery learning model with structured, hands-on activities. Course Code: Title: Format: Duration: SSD024 Oracle 11g DBA I Instructor led 5 days Course Description Through hands-on experience administering an Oracle 11g database, you will gain an understanding of

More information

UNIVERSITY AUTHORISED EDUCATION PARTNER (WDP)

UNIVERSITY AUTHORISED EDUCATION PARTNER (WDP) Audience Data Warehouse Administrator Database Administrators Database Designers Support Engineer Technical Administrator Related Training Required Prerequisites Working knowledge of SQL and use of PL/SQL

More information

Producing Readable Output with SQL*Plus

Producing Readable Output with SQL*Plus Producing Readable Output with SQL*Plus Chapter 8 Objectives After completing this lesson, you should be able to do the following: Produce queries that require an input variable Customize the SQL*Plus

More information

Oracle 11g DBA Training Course Content

Oracle 11g DBA Training Course Content Oracle 11g DBA Training Course Content ORACLE 10g/11g DATABASE ADMINISTRATION CHAPTER1 Important Linux commands Installing of Redhat Linux as per oracle database requirement Installing of oracle database

More information

Oracle Database 12c: Admin, Install and Upgrade Accelerated

Oracle Database 12c: Admin, Install and Upgrade Accelerated Oracle University Contact Us: + 38516306373 Oracle Database 12c: Admin, Install and Upgrade Accelerated Duration: 5 Days What you will learn This Oracle Database 12c: Admin, Install and Upgrade Accelerated

More information

D12C-AIU Oracle Database 12c: Admin, Install and Upgrade Accelerated NEW

D12C-AIU Oracle Database 12c: Admin, Install and Upgrade Accelerated NEW D12C-AIU Oracle Database 12c: Admin, Install and Upgrade Accelerated NEW Duration: 5 Days What you will learn This Oracle Database 12c: Admin, Install and Upgrade Accelerated course will provide you with

More information

LOGGING OR NOLOGGING THAT IS THE QUESTION

LOGGING OR NOLOGGING THAT IS THE QUESTION LOGGING OR NOLOGGING THAT IS THE QUESTION Page 1 of 35 Table of Contents: Table of Contents:...2 Introduction...3 What s a Redo...4 Redo Generation and Recoverability...7 Why I have excessive Redo Generation

More information

Using RMAN to restore a database to another server in an ASM environment

Using RMAN to restore a database to another server in an ASM environment Using RMAN to restore a database to another server in an ASM environment It is possible to restore an Oracle 11g database to another server easily in an ASM environment by following the steps below. 1.

More information

DATA RECOVERY IN OODBMS USING FLASHBACK

DATA RECOVERY IN OODBMS USING FLASHBACK , pp-119-123 Available online at http://www.bioinfo.in/contents.php?id=55 DATA RECOVERY IN OODBMS USING FLASHBACK SAHEBRAO N. SHINDE 1 AND CHITRA G. DESAI 2 1Computer Sci Dept., K.T.H.M. College, Nashik,

More information

Database Disaster Recovery using only RMAN Backups

Database Disaster Recovery using only RMAN Backups 12 th Apr, 2010 PURPOSE This paper demonstrates how an Oracle Database can be recovered or reconstructed by using only the RMAN Backup files (from Disks) in case of a complete server crash. CASE STUDY

More information

Chapter 1. Writing Basic. SQL Statements

Chapter 1. Writing Basic. SQL Statements Chapter 1 Writing Basic SQL Statements 1 Objectives After completing this lesson, you should be able to do the following: List the capabilities of SQL SELECT statements Execute a basic SELECT statement

More information

Oracle Database 10g: Administration Workshop II Release 2

Oracle Database 10g: Administration Workshop II Release 2 ORACLE UNIVERSITY CONTACT US: 00 9714 390 9000 Oracle Database 10g: Administration Workshop II Release 2 Duration: 5 Days What you will learn This course advances your success as an Oracle professional

More information

Getting all the pieces: Reliable Backup/Recovery

Getting all the pieces: Reliable Backup/Recovery Getting all the pieces: Reliable Backup/Recovery Part 1: Recovery Manager Part 2: Custom Backup Mark W. Farnham Andy Rivenes Neil Jensen Overview Whether you use Oracle s Recovery Manager product, a third

More information

Oracle. Brief Course Content This course can be done in modular form as per the detail below. ORA-1 Oracle Database 10g: SQL 4 Weeks 4000/-

Oracle. Brief Course Content This course can be done in modular form as per the detail below. ORA-1 Oracle Database 10g: SQL 4 Weeks 4000/- Oracle Objective: Oracle has many advantages and features that makes it popular and thereby makes it as the world's largest enterprise software company. Oracle is used for almost all large application

More information

Restore and Recovery Tasks. Copyright 2009, Oracle. All rights reserved.

Restore and Recovery Tasks. Copyright 2009, Oracle. All rights reserved. Restore and Recovery Tasks Objectives After completing this lesson, you should be able to: Describe the causes of file loss and determine the appropriate action Describe major recovery operations Back

More information

What's the Point of Oracle Checkpoints? Harald van Breederode Oracle University 29-OCT-2009

What's the Point of Oracle Checkpoints? Harald van Breederode Oracle University 29-OCT-2009 What's the Point of Oracle Checkpoints? Harald van Breederode Oracle University 29-OCT-2009 1 About Me Senior Principal DBA Trainer Oracle University 25 years Unix Experience 12 years Oracle DBA Experience

More information

Cross Platform Transportable Tablespaces Migration in Oracle 11g

Cross Platform Transportable Tablespaces Migration in Oracle 11g Cross Platform Transportable Tablespaces Migration in Oracle 11g Prepared by ViSolve Migration Team June 2012 Contact ViSolve, Inc. 4010, Moorpark Avenue, #205 San Jose, California 95117 (602) 842 2738

More information

Agenda. Overview Configuring the database for basic Backup and Recovery Backing up your database Restore and Recovery Operations Managing your backups

Agenda. Overview Configuring the database for basic Backup and Recovery Backing up your database Restore and Recovery Operations Managing your backups Agenda Overview Configuring the database for basic Backup and Recovery Backing up your database Restore and Recovery Operations Managing your backups Overview Backup and Recovery generally focuses on the

More information

This appendix describes the following procedures: Cisco ANA Registry Backup and Restore Oracle Database Backup and Restore

This appendix describes the following procedures: Cisco ANA Registry Backup and Restore Oracle Database Backup and Restore APPENDIXA This appendix describes the following procedures: Cisco ANA Registry Oracle Database Cisco ANA Registry This section describes the Cisco ANA Registry backup and restore procedure. Overview Provides

More information

Oracle Database 12c Recovery Manager New Features

Oracle Database 12c Recovery Manager New Features Oracle Database 12c Recovery Manager New Features Presented by: Andy Colvin February 13, 2013 *DISCLAIMER* Oracle 12c has not been released yet Some features may not be available I believe Oracle has mentioned

More information

Oracle Database: SQL and PL/SQL Fundamentals NEW

Oracle Database: SQL and PL/SQL Fundamentals NEW Oracle University Contact Us: 001-855-844-3881 & 001-800-514-06-97 Oracle Database: SQL and PL/SQL Fundamentals NEW Duration: 5 Days What you will learn This Oracle Database: SQL and PL/SQL Fundamentals

More information

Use RMAN to relocate a 10TB RAC database with minimum downtime. Tao Zuo tao_zuo@npd.com NPD Inc. 9/2011

Use RMAN to relocate a 10TB RAC database with minimum downtime. Tao Zuo tao_zuo@npd.com NPD Inc. 9/2011 Use RMAN to relocate a 10TB RAC database with minimum downtime Tao Zuo tao_zuo@npd.com NPD Inc. 9/2011 Contents Methods of relocate a database with minimum down time RMAN oracle suggested backup strategy

More information

Subqueries Chapter 6

Subqueries Chapter 6 Subqueries Chapter 6 Objectives After completing this lesson, you should be able to do the follovving: Describe the types of problems that subqueries can solve Define subqueries List the types of subqueries

More information

The safer, easier way to help you pass any IT exams. Exam : 1Z0-067. Upgrade Oracle9i/10g/11g OCA to Oracle Database 12c OCP.

The safer, easier way to help you pass any IT exams. Exam : 1Z0-067. Upgrade Oracle9i/10g/11g OCA to Oracle Database 12c OCP. http://www.51- pass.com Exam : 1Z0-067 Title : Upgrade Oracle9i/10g/11g OCA to Oracle Database 12c OCP Version : DEMO 1 / 7 1.Which two statements are true about scheduling operations in a pluggable database

More information

Database Access from a Programming Language: Database Access from a Programming Language

Database Access from a Programming Language: Database Access from a Programming Language Database Access from a Programming Language: Java s JDBC Werner Nutt Introduction to Databases Free University of Bozen-Bolzano 2 Database Access from a Programming Language Two Approaches 1. Embedding

More information

Database Access from a Programming Language:

Database Access from a Programming Language: Database Access from a Programming Language: Java s JDBC Werner Nutt Introduction to Databases Free University of Bozen-Bolzano 2 Database Access from a Programming Language Two Approaches 1. Embedding

More information

Oracle Database Security and Audit

Oracle Database Security and Audit Copyright 2014, Oracle Database Security and Beyond Checklists Learning objectives Understand data flow through an Oracle database instance Copyright 2014, Why is data flow important? Data is not static

More information

REDCENTRIC SOFTWARE ORACLE PLUG-IN FOR SOLARIS AGENT X86 VERSION 6.73.3197

REDCENTRIC SOFTWARE ORACLE PLUG-IN FOR SOLARIS AGENT X86 VERSION 6.73.3197 REDCENTRIC SOFTWARE ORACLE PLUG-IN FOR SOLARIS AGENT X86 VERSION 6.73.3197 RELEASE NOTES, AUGUST 15 TH, 2011 Software Oracle Plug-In for Solaris Agent x86 Version 6.73.3197 Release Notes, August 15th,

More information

Oracle Database 11g: Administration I

Oracle Database 11g: Administration I Oracle Database 11g: Administration I Course ID ORA900 Course Description Administration of the Oracle database management system (DBMS) software environment and of the server systems on which the DBMS

More information

Lesson 5 Administrative Users

Lesson 5 Administrative Users Administrative Users 5.1 Lesson 5 Administrative Users A practical and hands-on lesson on creating and using Oracle administrative users. SKILLBUILDERS Administrative Users 5.2 Lesson Objectives Understand

More information

SAP Note 1642148 - FAQ: SAP HANA Database Backup & Recovery

SAP Note 1642148 - FAQ: SAP HANA Database Backup & Recovery Note Language: English Version: 1 Validity: Valid Since 14.10.2011 Summary Symptom To ensure optimal performance, SAP HANA database holds the bulk of its data in memory. However, it still uses persistent

More information

Oracle Database Cross Platform Migration Lucy Feng, DBAK

Oracle Database Cross Platform Migration Lucy Feng, DBAK Delivering Oracle Success Oracle Database Cross Platform Migration Lucy Feng, DBAK RMOUG QEW November 19, 2010 Business Requirements Migrate all Oracle databases to IBM zseries based Linux The database

More information

Oracle Backup and Recovery Best Practices Dell Compellent Storage Center. Dell Compellent Technical Best Practices

Oracle Backup and Recovery Best Practices Dell Compellent Storage Center. Dell Compellent Technical Best Practices Oracle Backup and Recovery Best Practices Dell Compellent Storage Center Dell Compellent Technical Best Practices ii Document Revision Table 1. Revision History Date Revision Description 6/15/2011 A Initial

More information

Oracle Architecture. Overview

Oracle Architecture. Overview Oracle Architecture Overview The Oracle Server Oracle ser ver Instance Architecture Instance SGA Shared pool Database Cache Redo Log Library Cache Data Dictionary Cache DBWR LGWR SMON PMON ARCn RECO CKPT

More information

Oracle Backup, Recovery, and Performance Tuning using EMC Avamar and Oracle RMAN

Oracle Backup, Recovery, and Performance Tuning using EMC Avamar and Oracle RMAN Oracle Backup, Recovery, and Performance Tuning using EMC Avamar and Oracle RMAN Best Practices Planning Abstract This white paper provides an in-depth review of the capabilities of the EMC Avamar Oracle

More information

Oracle Data Guard for High Availability and Disaster Recovery

Oracle Data Guard for High Availability and Disaster Recovery Oracle Data Guard for High Availability and Disaster Recovery John Zhong Senior Technical Specialist Global Database Management Group Citigroup and Vice President of American DBAOnline John_j_zhong@yahoo.com

More information

SQL*Plus User s Guide and Reference

SQL*Plus User s Guide and Reference SQL*Plus User s Guide and Reference Release 8.0 Part No. A53717 01 Enabling the Information Age SQL*Plus User s Guide and Reference, Release 8.0 Part No. A53717 01 Copyright 1997 Oracle Corporation All

More information

Zen Internet. Online Data Backup. Zen Vault Professional Plug-ins. Issue: 2.0.08

Zen Internet. Online Data Backup. Zen Vault Professional Plug-ins. Issue: 2.0.08 Zen Internet Online Data Backup Zen Vault Professional Plug-ins Issue: 2.0.08 Contents 1 Plug-in Installer... 3 1.1 Installation and Configuration... 3 2 Plug-ins... 5 2.1 Email Notification... 5 2.1.1

More information

SQL Introduction Chapter 7, sections 1 & 4. Introduction to SQL. Introduction to SQL. Introduction to SQL

SQL Introduction Chapter 7, sections 1 & 4. Introduction to SQL. Introduction to SQL. Introduction to SQL SQL Introduction Chapter 7, sections 1 & 4 Objectives To understand Oracle s SQL client interface Understand the difference between commands to the interface and SQL language. To understand the Oracle

More information

Best Practices White Paper Using Oracle Database 10g Automatic Storage Management with FUJITSU Storage

Best Practices White Paper Using Oracle Database 10g Automatic Storage Management with FUJITSU Storage Best Practices White Paper Using Oracle Database 10g Automatic Storage Management with FUJITSU Storage Sep 6, 2005 Fujitsu Limited Contents 1. Introduction... 1 2. Fujitsu s ETERNUS Storage Systems...

More information

ORACLE DATABASE ADMINISTRATION PROGRAM LEARNING OUTCOMES

ORACLE DATABASE ADMINISTRATION PROGRAM LEARNING OUTCOMES ASSESSMENT 15-Sep-2006 Activity: Curriculum development Participants: Bil Bergin Action: Added Modified Delete Accepted Not Reviewed Deactivate PROGRAM DEACTIVATED Rational: Evaluated Oracle Database Operations

More information

How To Recover From A Crash On An Orgsoorora Database

How To Recover From A Crash On An Orgsoorora Database Oracle9i Backup and Recovery Concepts Release 2 (9.2) March 2002 Part No. A96519-01 Oracle9i Backup and Recovery Concepts, Release 2 (9.2) Part No. A96519-01 Copyright 2001, 2002 Oracle Corporation. All

More information

Setup Flashback Database on Data Guard Physical Standby Database for SAP Customers

Setup Flashback Database on Data Guard Physical Standby Database for SAP Customers An Oracle White Paper January 200 Setup Flashback Database on Data Guard Physical Standby Database for SAP Customers Database Version : g Release 2 Preface... 2 Requirements... 4 Aim of the document...

More information

Oracle Backup & Recovery

Oracle Backup & Recovery ORACLG«Oracle Press Oracle Backup & Recovery Rama Velpuri Osborne McGraw-Hill Berkeley New York St. Louis San Francisco Auckland Bogota Hamburg London Madrid Mexico City Milan Montreal New Delhi Panama

More information

Oracle9i Data Guard: SQL Apply Best Practices. An Oracle White Paper September 2003

Oracle9i Data Guard: SQL Apply Best Practices. An Oracle White Paper September 2003 Oracle9i Data Guard: SQL Apply Best Practices An Oracle White Paper September 2003 Oracle9i Data Guard: SQL Apply Best Practices Introduction... 3 SQL Apply Best Practices & Observations At a Glance...

More information

Oracle 11g Database Administration

Oracle 11g Database Administration Oracle 11g Database Administration Part 1: Oracle 11g Administration Workshop I A. Exploring the Oracle Database Architecture 1. Oracle Database Architecture Overview 2. Interacting with an Oracle Database

More information

Displaying Data from Multiple Tables

Displaying Data from Multiple Tables Displaying Data from Multiple Tables 1 Objectives After completing this lesson, you should be able to do the following: Write SELECT statements to access data from more than one table using eguality and

More information

NEC Storage NV Series

NEC Storage NV Series NEC Storage NV Series Guide to Oracle Storage Compatibility Program Network Attached File Server Snapshot Technologies is-wp-04-001 Rev-1.00 February, 2005 NEC Corporation. - 1 - Copyright 2005 NEC Corporation.

More information

Displaying Data from Multiple Tables. Chapter 4

Displaying Data from Multiple Tables. Chapter 4 Displaying Data from Multiple Tables Chapter 4 1 Objectives After completing this lesson, you should be able to do the following: Write SELECT statements to access data from more than one table using equality

More information

HOW TO. RMAN Restore for Standby 10gR2

HOW TO. RMAN Restore for Standby 10gR2 Author: Martin Decker Date: 8.10.2008 Subject: RMAN Restore for Standby 10gR2 HOW TO RMAN Restore for Standby 10gR2 1 Preparations The existing database MDDB1 should be duplicated as Standby Database MDSTB1

More information

Backup and Recovery. Oracle RMAN 11 g. Oracle Press ORACLG. Matthew Hart. Robert G. Freeman. Mc Graw Hill. Lisbon London Madrid Mexico City Milan

Backup and Recovery. Oracle RMAN 11 g. Oracle Press ORACLG. Matthew Hart. Robert G. Freeman. Mc Graw Hill. Lisbon London Madrid Mexico City Milan ORACLG Oracle Press Oracle 11 g Backup and Recovery Robert G. Freeman Matthew Hart Mc Graw Hill New York Chicago San Francisco Lisbon London Madrid Mexico City Milan New Delhi San Juan Seoul Singapore

More information

Simplifying Online Backup Operations for Microsoft Exchange, SQL and Oracle with Hitachi Protection Manager Software

Simplifying Online Backup Operations for Microsoft Exchange, SQL and Oracle with Hitachi Protection Manager Software Simplifying Online Backup Operations for Microsoft Exchange, SQL and Oracle with Hitachi Protection Manager Software Craig Chan: Product Manager Bobby Crouch: Product Marketing Manager Hitachi Data Systems

More information

Maximum Availability Architecture. Oracle Best Practices for High Availability. Oracle Active Data Guard Oracle Data Guard 11g

Maximum Availability Architecture. Oracle Best Practices for High Availability. Oracle Active Data Guard Oracle Data Guard 11g Oracle Active Data Guard Oracle Data Guard 11g Oracle Maximum Availability Architecture White Paper September 2011 Maximum Availability Architecture Oracle Best Practices for High Availability Oracle Active

More information

Automatic Backup in Oracle Database

Automatic Backup in Oracle Database Automatic Backup in Oracle Database Miloš SÝKORA Slovak University of Technology Faculty of Informatics and Information Technologies Ilkovičova 3, 842 16 Bratislava, Slovakia msykora@gmail.com Abstract.

More information

COURCE TITLE DURATION. Oracle Database 11g: Administration Workshop I

COURCE TITLE DURATION. Oracle Database 11g: Administration Workshop I COURCE TITLE DURATION DBA 11g Oracle Database 11g: Administration Workshop I 40 H. What you will learn: This course is designed to give students a firm foundation in basic administration of Oracle Database

More information

Oracle Data Guard Fast Start Failover understood!

Oracle Data Guard Fast Start Failover understood! Oracle Data Guard Fast Start Failover understood! Dr. Martin Wunderli http://www.trivadis.com Principal Consultant Partner Basel Baden Bern Lausanne Zurich Düsseldorf Frankfurt/M. Freiburg i. Br. Hamburg

More information

Oracle Data Recovery Advisor

Oracle Data Recovery Advisor Infrastructure at your Service. Oracle Data Recovery Advisor Infrastructure at your Service. About me David Hueber COO Principal Consultant Mobile +41 79 963 43 68 david.hueber@dbi-services.com www.dbi-services.com

More information

Analysis One Code Desc. Transaction Amount. Fiscal Period

Analysis One Code Desc. Transaction Amount. Fiscal Period Analysis One Code Desc Transaction Amount Fiscal Period 57.63 Oct-12 12.13 Oct-12-38.90 Oct-12-773.00 Oct-12-800.00 Oct-12-187.00 Oct-12-82.00 Oct-12-82.00 Oct-12-110.00 Oct-12-1115.25 Oct-12-71.00 Oct-12-41.00

More information

DBMS Questions. 3.) For which two constraints are indexes created when the constraint is added?

DBMS Questions. 3.) For which two constraints are indexes created when the constraint is added? DBMS Questions 1.) Which type of file is part of the Oracle database? A.) B.) C.) D.) Control file Password file Parameter files Archived log files 2.) Which statements are use to UNLOCK the user? A.)

More information

Zero Downtime Backup solution for Oracle10g

Zero Downtime Backup solution for Oracle10g Storage Grid Seminar Oktober 2005 Frankfurt, München, Hamburg Zero Downtime Backup solution for Oracle10g Jaime Blasco HP/Oracle CTC (Cooperative Technology Center) EMEA Competence Center 2004 Hewlett-Packard

More information

D78850GC10. Oracle Database 12c Backup and Recovery Workshop. Summary. Introduction. Prerequisites

D78850GC10. Oracle Database 12c Backup and Recovery Workshop. Summary. Introduction. Prerequisites D78850GC10 Oracle 12c and Recovery Workshop Summary Duration Vendor Audience 5 Days Oracle Data Warehouse Administrators, Administrators, Support Engineers, Technical Administrators, Technical Consultants

More information

TECHNICAL REPORT. Nimble Storage Oracle Backup and Recovery Guide

TECHNICAL REPORT. Nimble Storage Oracle Backup and Recovery Guide TECHNICAL REPORT Nimble Storage Oracle Backup and Recovery Guide N I M B L E T E C H N I C A L R E P O R T : N I M B L E S T O R A G E F O R O R A C L E B A C K U P A N D R E C O V E R Y 1 Document Revision

More information

CA ARCserve Backup for Windows

CA ARCserve Backup for Windows CA ARCserve Backup for Windows Agent for Oracle Guide r16 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

CWMS System Backup / Oracle Backup and Recovery

CWMS System Backup / Oracle Backup and Recovery CWMS System Backup / Oracle Backup and Recovery Joel Asunskis, P.E. Hydraulic Engineer St. Louis District 16 September 2009 US Army Corps of Engineers BUILDING STRONG Summary Backup Needs of Water Management

More information

SAP HANA Backup and Recovery (Overview, SPS08)

SAP HANA Backup and Recovery (Overview, SPS08) SAP HANA Backup and Recovery (Overview, SPS08) Andrea Kristen, SAP HANA Product Management October 2014 Disclaimer This presentation outlines our general product direction and should not be relied on in

More information

High Availability for Oracle 10g Using Double-Take

High Availability for Oracle 10g Using Double-Take High Availability for Oracle 10g Using Double-Take High Availability for Oracle 10g Using Double-Take Revision 1.0.0 published September 2004 Double-Take, GeoCluster and NSI are registered trademarks of

More information

BrightStor ARCserve Backup

BrightStor ARCserve Backup BrightStor ARCserve Backup Support for Oracle Backup and Restore on Windows 64-Bit Platform - 1 - TABLE OF CONTENTS 1. Summary... 3 2. Backup and Restore Process... 3 3. RMAN Command and Script Template...

More information

Clonación de una Base de Datos Oracle 11gR2 Activa usando RMAN. CLONACIÓN DE UNA BASE DE DATOS ORACLE 11gR2 ACTIVA USANDO RMAN

Clonación de una Base de Datos Oracle 11gR2 Activa usando RMAN. CLONACIÓN DE UNA BASE DE DATOS ORACLE 11gR2 ACTIVA USANDO RMAN CLONACIÓN DE UNA BASE DE DATOS ORACLE 11gR2 ACTIVA USANDO RMAN Autor : Luis Alberto Flores Zapata Creado : 10-Agosto-2015 1 Contenido CLONACIÓN DE UNA BASE DE DATOS ORACLE 11gR2 ACTIVA USANDO RMAN... 3

More information

VMware Backup & Recovery

VMware Backup & Recovery VMware Backup & Recovery Doug Hazelman Senior Director, Product Strategy Veeam Software Doug.Hazelman@veeam.com Twitter: @VMDoug Agenda VMware image level backup overview Considerations for Exchange Backup

More information

AT&T Global Network Client for Windows Product Support Matrix January 29, 2015

AT&T Global Network Client for Windows Product Support Matrix January 29, 2015 AT&T Global Network Client for Windows Product Support Matrix January 29, 2015 Product Support Matrix Following is the Product Support Matrix for the AT&T Global Network Client. See the AT&T Global Network

More information

Database Design. Marta Jakubowska-Sobczak IT/ADC based on slides prepared by Paula Figueiredo, IT/DB

Database Design. Marta Jakubowska-Sobczak IT/ADC based on slides prepared by Paula Figueiredo, IT/DB Marta Jakubowska-Sobczak IT/ADC based on slides prepared by Paula Figueiredo, IT/DB Outline Database concepts Conceptual Design Logical Design Communicating with the RDBMS 2 Some concepts Database: an

More information

Using Recovery Manager with Oracle Data Guard in Oracle9i. An Oracle White Paper January 2007

Using Recovery Manager with Oracle Data Guard in Oracle9i. An Oracle White Paper January 2007 Using Recovery Manager with Oracle Data Guard in Oracle9i An Oracle White Paper January 2007 Using Recovery Manager with Oracle Data Guard in Oracle9i Executive summary... 3 Introduction... 3 Configuration

More information

Oracle Database 11g: Administration Workshop I

Oracle Database 11g: Administration Workshop I Oracle University Entre em contato: 0800 891 6502 Oracle Database 11g: Administration Workshop I Duração: 5 Dias Objetivos do Curso This course is designed to give students a firm foundation in basic administration

More information

Oracle 11g DBA Online Course - Smart Mind Online Training, Hyderabad. Oracle 11g DBA Online Training Course Content

Oracle 11g DBA Online Course - Smart Mind Online Training, Hyderabad. Oracle 11g DBA Online Training Course Content Oracle 11g DBA Online Training Course Content Faculty: Real time and certified INTRODUCTION TO ORACLE DBA What is DBA? Why a Company needs a DBA? Roles & Responsibilities of DBA Oracle Architecture Physical

More information

Oracle Database Creation for Perceptive Process Design & Enterprise

Oracle Database Creation for Perceptive Process Design & Enterprise Oracle Database Creation for Perceptive Process Design & Enterprise 2013 Lexmark International Technology S.A. Date: 4/9/2013 Version: 3.0 Perceptive Software is a trademark of Lexmark International Technology

More information

Backup Server: User Manual. Version 2.1-p2

Backup Server: User Manual. Version 2.1-p2 Backup Server: User Manual Version 2.1-p2 Table of Contents Overview... 1 High-Availability... 1 User Interface... 1 Login... 1 Resources... 1 List of Backups... 2 Resource Configuration... 3 Oracle Database

More information

Oracle Database Security. Nathan Aaron ICTN 4040 Spring 2006

Oracle Database Security. Nathan Aaron ICTN 4040 Spring 2006 Oracle Database Security Nathan Aaron ICTN 4040 Spring 2006 Introduction It is important to understand the concepts of a database before one can grasp database security. A generic database definition is

More information

Cross-Platform Oracle Database Migration Using Transportable Tablespaces and EMC Open Replicator for Symmetrix

Cross-Platform Oracle Database Migration Using Transportable Tablespaces and EMC Open Replicator for Symmetrix Cross-Platform Oracle Database Migration Using Transportable Tablespaces and EMC Open Replicator for Best Practices Planning Abstract Starting with Oracle 10g, cross-platform transportable tablespaces

More information

Many DBA s are being required to support multiple DBMS s on multiple platforms. Many IT shops today are running a combination of Oracle and DB2 which

Many DBA s are being required to support multiple DBMS s on multiple platforms. Many IT shops today are running a combination of Oracle and DB2 which Many DBA s are being required to support multiple DBMS s on multiple platforms. Many IT shops today are running a combination of Oracle and DB2 which is resulting in either having to cross train DBA s

More information

How To Fix A Backup On An Oracle 9I Database On A Pc Oracle9I On A Microsoft Powerbook On A Macbook Oracle.Com On A Blackberry Oracle Powerbook 2 On A Linux Computer On A Z

How To Fix A Backup On An Oracle 9I Database On A Pc Oracle9I On A Microsoft Powerbook On A Macbook Oracle.Com On A Blackberry Oracle Powerbook 2 On A Linux Computer On A Z Oracle9i User-Managed Backup and Recovery Guide Release 2 (9.2) March 2002 Part No. A96572-01 Oracle9i User-Managed Backup and Recovery Guide, Release 2 (9.2) Part No. A96572-01 Copyright 1996, 2002, Oracle

More information

1 Backup/Restore Oracle 8i/9i

1 Backup/Restore Oracle 8i/9i 1 Backup/Restore Oracle 8i/9i This chapter will describe in details how DATABOKS Online Backup Manager backup your Oracle 8i/9i and how you can restore an Oracle 8i/9i database using the backup files.

More information