Oracle8i Backup and Recovery Guide Release 2 (8.1.6) Part Number A76993-01 |
|
Welcome to the world of Oracle backup and recovery. This guide includes the conceptual and task-oriented information you need to:
The Oracle8i Backup and Recovery Guide contains information that describes the features and functionality of the Oracle8i Standard Edition and the Oracle8i Enterprise Edition products. The Standard Edition and Enterprise Edition have the same basic features, but several advanced features are available only with the Enterprise Edition, and some of these are optional.
See Also:
|
This section describes new features in Oracle8i.
Oracle release 8.1.6 contains a number of improvements that provide more robust protections against the following types of data corruption:
If the checksum fails when Oracle reads the control file or redo logs, then Oracle rereads the data from either a different log or the same member in situations where previous Oracle releases would not reread. Consequently, Oracle has a second chance to find a good copy of the data and repair any physical data corruption.
The following backup and recovery features are new in release 8.1.5:
Part / Chapter | Contents | |
---|---|---|
PART 1 |
Developing a Backup and Recovery Strategy |
|
Offers a general overview of backup and recovery concepts and methods. |
||
Describes how to manage control files, online redo logs, and archived redo logs for backup and recovery. |
||
Provides guidelines for developing a backup and recovery strategy. |
||
PART 2 |
Using Operating System Commands for Backup and Recovery |
|
Provides step-by-step instructions for performing operating system backups. |
||
Provides step-by-step instructions for performing media restore and recovery using operating system and SQL*Plus commands. |
||
Describes the procedures for performing media recovery in several common scenarios. |
||
Chapter 7, "Performing Operating System Tablespace Point-in-Time Recovery" |
Provides planning guidelines and step-by-step instructions for manually performing tablespace point-in-time recovery. |
The following aspects of this manual are new in release 8.1.6:
This guide is for database administrators (DBAs) who administer the backup, restore, and recovery operations of an Oracle database system using operating system commands.
Readers of this guide are assumed to be familiar with relational database concepts and basic database administration. They are also assumed to be familiar with the operating system environment under which they are running Oracle.
This section explains the conventions used in this manual including the following:
This section explains the conventions used within the text:
Uppercase text is used to call attention to tablespace names, initialization parameters, and SQL keywords.
For example, "If you create a private rollback segment, the name must be included in the ROLLBACK_SEGMENTS parameter of the initialization parameter file. You can view this information by issuing a SHOW PARAMETER statement in SQL*Plus."
Italicized words within text are book titles, new vocabulary, emphasized words, or variables in SQL or Recovery Manager syntax.
For example, "An archived redo log is an online redo log that has been copied offline. You must run your database in ARCHIVELOG mode to enable this feature. If you are using Recovery Manager, you can specify an archived redo log in a backup command by using the archivelog like '/oracle/archive/arc_*' subclause."
Bold words within text are Recovery Manager keywords.
For example, "Use the Recovery Manager backup command to back up your database."
Monospaced
CharactersFilenames, directories, and operating system commands appear in a monospaced font. Also, monospaced characters in text preceding a code example indicates a filename or keyword used in the sample code.
For example, "If you do not want to use a command such as the UNIX cp
to perform the backup of /oracle/dbs/df1.f
, then you can execute an RMAN job as follows:
run { allocate channel c1 type disk; backup datafile `/oracle/dbs/df1.f'; }
For information about Recovery Manager syntax conventions, see the Oracle8i Recovery Manager User's Guide and Reference.
SQL, SQL*Plus, and Recovery Manager commands and statements appear separated from the text of paragraphs in a monospaced font. For example:
INSERT INTO emp (empno, ename) VALUES (1000, 'SMITH'); ALTER TABLESPACE users ADD DATAFILE 'users2.ora' SIZE 50K; run { allocate channel ch1 type disk; backup database; }
When you run RMAN from the command line, the command prompt appears as RMAN>
. When you issue commands from the SQL*Plus command line, the prompt appears as SQL>
. These prompts are displayed in the code examples only when they are necessary to prevent confusion.
You can execute SQL, SQL*Plus, and RMAN commands in different environments on different platforms. As much as possible, this guide attempts to provide generic documentation, that is, documentation that is not specific to any operating system or interface. Nevertheless, it is sometimes necessary for illustrative purposes to show how the syntax works at the operating system level. In these cases, this book uses examples from a UNIX command-line interface and employs the %
symbol to indicate the operating system prompt. For example:
% rman target / rcvcat rman/rman@inst2 RMAN> startup
Every reader of this guide is presumed to have read:
You will often need to refer to the following reference guides:
We value and appreciate your comments as an Oracle user and reader of our references. As we write, revise, and evaluate, your opinions are the most important input we receive. At the front of this reference is a reader's comment form that we encourage you to use to tell us both what you like and what you dislike about this (or other) Oracle manuals. If the form is missing, or you would like to contact us, please use the following address or fax number:
You can also e-mail your comments to the Information Development department at the following e-mail address: infodev@us.oracle.com
|
![]() Copyright © 1996-2000, Oracle Corporation. All Rights Reserved. |
|