- 浏览: 4407117 次
- 性别:
- 来自: 厦门
文章分类
- 全部博客 (634)
- Oracle日常管理 (142)
- Oracle体系架构 (45)
- Oracle Tuning (52)
- Oracle故障诊断 (35)
- RAC/DG/OGG (64)
- Oracle11g New Features (48)
- DataWarehouse (15)
- SQL, PL/SQL (14)
- DB2日常管理 (9)
- Weblogic (11)
- Shell (19)
- AIX (12)
- Linux/Unix高可用性 (11)
- Linux/Unix日常管理 (66)
- Linux桌面应用 (37)
- Windows (2)
- 生活和工作 (13)
- 私人记事 (0)
- Python (9)
- CBO (15)
- Cognos (2)
- ORACLE 12c New Feature (2)
- PL/SQL (2)
- SQL (1)
- C++ (2)
- Hadoop大数据 (5)
- 机器学习 (3)
- 非技术 (1)
最新评论
-
di1984HIT:
xuexilee!!!
Oracle 11g R2 RAC高可用连接特性 – SCAN详解 -
aneyes123:
谢谢非常有用那
PL/SQL的存储过程和函数(原创) -
jcjcjc:
写的很详细
Oracle中Hint深入理解(原创) -
di1984HIT:
学习了,学习了
Linux NTP配置详解 (Network Time Protocol) -
avalonzst:
大写的赞..
AIX内存概述(原创)
CONFIGURE
CONFIGURE {ARCHIVELOG DELETION POLICY {CLEAR | TO {APPLIED ON STANDBY | NONE }} | AUXNAME FOR DATAFILE datafileSpec {CLEAR | TO ' filename '} | backupConf | cfauConf | deviceConf | ENCRYPTION {ALGORITHM CLEAR | FOR {DATABASE | TABLESPACE tablespace_name } {ON | OFF | CLEAR } | ALGORITHM quoted_string } | SNAPSHOT CONTROLFILE NAME {CLEAR | TO ' filename '}}
configure ::=
{ARCHIVELOG | DATAFILE } BACKUP COPIES FOR DEVICE TYPE [= ] deviceSpecifier {CLEAR | TO integer } | BACKUP OPTIMIZATION {CLEAR | OFF | ON } | EXCLUDE FOR TABLESPACE tablespace_name [CLEAR ] | MAXSETSIZE {CLEAR | TO {sizeSpec | UNLIMITED }} | RETENTION POLICY {CLEAR | TO {NONE | RECOVERY WINDOW OF integer DAYS | REDUNDANCY [= ] integer }}
backupConf ::=
cfauConf ::=
CONTROLFILE AUTOBACKUP {CLEAR | FORMAT FOR DEVICE TYPE [= ] deviceSpecifier {CLEAR | TO formatSpec } | OFF | ON }
deviceConf ::=
Description of the illustration deviceconf.gif
To configure persistent settings affecting RMAN backup, restore, duplication, and maintenance jobs. These configurations are in effect for any RMAN session until the configuration is cleared or changed.
Use CONFIGURE
to set the following:
-
An ongoing retention policy that automatically determines which backups and copies are eligible for deletion because they are no longer needed
-
The device type (for example,
DISK
orsbt
) for RMAN jobs -
The default number of channels of each device type that RMAN should allocate for automated backup and restore jobs
-
The settings for automatic channels for a specified device type
-
The maximum size of backup pieces and sets created on automatic channels
-
Backup optimization either
ON
orOFF
-
The exclusion policy for tablespaces in whole database backups
-
The filename of the snapshot control file
-
Filenames for files in an auxiliary database
-
The control file autobackup feature to
ON
orOFF
-
The default format for the control file autobackup output files
RMAN uses default settings for CONFIGURE
options. You can return to the default value for any CONFIGURE
command by running the same command with the CLEAR
option.
See Also:
Oracle Database Backup and Recovery Basics to learn how to configure the RMAN environment-
Execute this command at the RMAN prompt.
CONFIGURE
cannot be used within a RUN block. -
The target database must be mounted or open, because configuration settings are stored in the control file.
-
Channels allocated with ALLOCATE CHANNEL override any configured automatic channels.
-
RMAN does not simultaneously allocate automatic channels for multiple device types in
BACKUP
command. -
To direct backups or restores to specific channels, use the RMAN-generated channel names. If you specify channel numbers in the
CONFIGURE
CHANNEL
command, then RMAN uses the same numbers in the system-generated channel names. -
If you configure channels by using the nondefault
CONNECT
orPARMS
options to create backups or copies, then you must either use the same configured channels or manually allocate channels with the same options to restore or crosscheck these backups. -
You cannot exclude the
SYSTEM
tablespace from whole database backups. -
The
REDUNDANCY
andRECOVERY
WINDOW
options are mutually exclusive. Only one type of retention policy can be in effect at any time. -
You cannot clear individual parameters when running
CONFIGURE
...
CLEAR
. For example, you can runCONFIGURE
CHANNEL
DEVICE
TYPE
sbt
CLEAR
but notCONFIGURE
CHANNEL
DEVICE
TYPE
sbt
MAXPIECESIZE
5M
CLEAR
. -
The channel number in a manually numbered channel must be less than 255.
-
You must specify at least one channel option when running
CONFIGURE
CHANNEL
. In other words, you cannot issue a command such asCONFIGURE
CHANNEL
2
DEVICE
TYPE
DISK
, but you can issue a command such asCONFIGURE
CHANNEL
2
DEVICE
TYPE
DISK
MAXPIECESIZE
2500K
. -
The
CONFIGURE
CONTROLFILE
AUTOBACKUP
FORMAT
format string must include the %F substitution variable. It cannot contain any other substitution variable. -
With Oracle Database Release 10g in a Data Guard environment, configurations can be set for standby databases as well as primary databases. All configurations except for retention policy, tablespace exclude and auxiliary names can be set to node-specific values. This means that the primary and standby databases can have different channel configurations, autobackup locations, and so on.
ARCHIVELOG
DELETION
POLICY
TO
( APPLIED ON STANDBY
| NONE
| CLEAR
) |
Governs archived redo log deletion policy for the flash recovery area. Possible settings are:
|
AUXNAME
FOR
DATAFILE
datafileSpec
TO
'
filename
'
|
Configures the auxiliary filename for the specified target datafile to '
filename
'
. For example, you can set the auxiliary name for datafile 2 to /df2.f
, and then unspecify this auxiliary name by running CONFIGURE
AUXNAME
FOR
DATAFILE
2
CLEAR
.
If you are performing TSPITR or running the For example, use this command during TSPITR if the datafiles are on
raw disk and you need to restore auxiliary datafiles to raw disk for
performance reasons. Typically, you set the When renaming files with the See Also: Oracle Database Backup and Recovery Advanced User's Guide to learn how to perform RMAN TSPITR, and Oracle Database Backup and Recovery Advanced User's Guide to learn how to duplicate a database with RMAN |
backupConf | Configures default backup options such as duplexing, optimization, excluding tablespaces, backup set sizes, and retention policies. |
cfauConf | Configures control file autobackup settings |
deviceConf | Configures default backup settings for devices, such as the default backup device, channel configurations for devices, default backup types for each device, and parallelism. |
ENCRYPTION
|
Used to specify encryption settings for the database or tablespaces within the database, which apply unless overridden using the SET command. Options specified for an individual tablespace take precedence over options specified for the whole database. |
ALGORITHM
{
|
Specifies the default algorithm to use for encryption, when writing encrypted backup sets. Possible values are listed in V$RMAN_ENCRYPTION_ALGORITHMS
. With CLEAR
, resets the database to the default algorithm, which is AES128
. |
FOR
{
{ |
Specifies whether to use encryption for the database or specified tablespaces. With FOR
DATABASE
, the effect is as follows:
Configured settings for a tablespace always override configuration set at the database level. With
With |
SNAPSHOT
CONTROLFILE
NAME
[ TO
'
filename
' | CLEAR ]
|
Configures the snapshot control file filename to '
filename
'
. If you run CONFIGURE
SNAPSHOT
CONTROLFILE
NAME
CLEAR
, then RMAN sets the snapshot control file name to its default.
The default value for the snapshot control file name is
platform-specific and dependent on the Oracle home. For example, the
default on some UNIX system is See Also: Oracle Database Backup and Recovery Advanced User's Guide for more information about snapshot control files |
{ARCHIVELOG | DATAFILE} BACKUP
COPIES
FOR
DEVICE TYPE [=]
deviceSpecifier
[CLEAR |TO
integer
]
|
Specifies the number of copies of each backup set for DATAFILE
(both datafiles and control files) or ARCHIVELOG
files on the specified device type, from 1 (default) to 4. If duplexing is specified in the BACKUP
command or in a SET
BACKUP
COPIES
command, then the CONFIGURE
setting is overridden.
Note: Control file autobackups on disk are a special case and are never duplexed. RMAN always writes one and only copy. Note: RMAN raises an error if you try to duplex backups to the flash recovery area. You cannot duplex backups to the flash recovery area. |
BACKUP
OPTIMIZATION [CLEAR | OFF | ON ]
|
Toggles backup optimization ON
or OFF
(default). Specify CLEAR
to return optimization to its default value of OFF
.
Optimization does not back up a file to a device type if the
identical file is already backed up on the device type. For two files to
be identical, their content must be exactly the same. You can override
backup optimization by using the RMAN does not signal an error if optimization causes all files to be skipped during a backup. Note that Backup optimization is enabled when all of the following conditions are met:
The retention policy has an effect on which files backup optimization skips. See Also: Oracle Database Backup and Recovery Advanced User's Guide for a description of how RMAN determines that it can skip the backup of a file |
EXCLUDE
FOR
TABLESPACE
tablespace_name
[ CLEAR ]
|
Excludes the specified tablespace from BACKUP
DATABASE
commands. Note that you cannot exclude the SYSTEM
tablespace. By default, each tablespace is not excluded, that is, the
exclude functionality is disabled. The exclusion is stored as an
attribute of the tablespace, not the individual datafiles, so the
exclusion applies to any files that are added to this tablespace in the
future. If you run CONFIGURE
...
CLEAR
on a tablespace after excluding it, then it returns to the default configuration of "not excluded."
You can still back up the configured tablespace by explicitly specifying it in a |
MAXSETSIZE [ CLEAR | TO [ sizeSpec | UNLIMITED ]
|
Specifies the maximum size of each backup set created on a channel. By default MAXSETSIZE
is set to UNLIMITED
, meaning that it is disabled.
Note:
This option is ignored by |
RETENTION
POLICY
|
Specifies a persistent,
ongoing policy for datafile and control file backups and copies that
RMAN marks as obsolete, that is, not needed and eligible for deletion.
As time passes, RMAN marks backups and copies as obsolete according to
the criteria you specify in the retention policy. RMAN does not
automatically delete any backups or copies: manually run the DELETE
OBSOLETE
command to remove obsolete files. By default, RETENTION
POLICY
is configured to REDUNDANCY
1
.
For backups, the basic unit of the retention policy is a backup set (not a backup piece) or image copy. For example, |
CLEAR
|
Resets the retention policy to its default (REDUNDANCY
=
1
). |
TO RECOVERY
WINDOW
OF
integer
DAYS
|
Specifies a time window in which RMAN should be able to recover the database. The window stretches from the current time (SYSDATE
) to the point of recoverability
, which is the earliest date to which you want to recover. The point of recoverability is SYSDATE
- integer
days in the past. |
TO REDUNDANCY
integer
|
Specifies that RMAN should retain integer
backups or copies of each datafile and control file. If more than integer
backups or copies exist, RMAN marks these extra files as obsolete.
Then, RMAN determines the oldest of the retained backups and copies, and
marks all archived logs and log backups older than this backup or copy
as obsolete. The DELETE
OBSOLETE
command removes obsolete backups and copies as well as archived log backups and copies. |
TO NONE
|
Disables the retention policy feature. RMAN does not consider any backups or copies as obsolete. |
CONTROLFILE
AUTOBACKUP
|
Controls the control file autobackup feature. By default, this feature is not enabled. |
CLEAR
|
Returns the feature to its default setting of OFF
. |
FORMAT
FOR
DEVICE
TYPE
deviceSpecifier
[ CLEAR | TO
formatSpec
] |
Configures the default
filename format for the control file autobackup on the specified device
type. If a flash recovery area is enabled, then RMAN creates the disk
autobackup in the flash recovery area. Otherwise, RMAN creates it in an
operating system specific location (?/dbs
on Unix and Windows).
By default, the initial format is
Specify The formatSpec can specify an Automatic Storage Management disk group. The following example configures a channel for an ASM disk group: CONFIGURE CONTROLFILE AUTOBACKUP FOR DEVICE TYPE DISK TO '+dgroup1'; See Also:
"formatSpec"
, for the semantics of the |
OFF
|
Disables the autobackup feature. (OFF
is the default value.) When this command is OFF
, any BACKUP
command that includes datafile 1
(including BACKUP
DATABASE
)
automatically includes the current control file and server parameter
file in the backup set. Otherwise, RMAN does not include these files. |
ON
|
If CONFIGURE
CONTROLFILE
AUTOBACKUP
is ON
(by default it is OFF
), then RMAN performs a control file autobackup in the following circumstances:
The first channel allocated during the backup or copy job creates the autobackup and places it into its own backup set; for post-structural autobackups, the default disk channel makes the backup. RMAN writes the control file and the server parameter file to the same backup piece. After the control file autobackup completes, the database writes a message containing the complete path of the backup piece and the device type to the alert log. The default location for the autobackup on disk is the flash recovery
area (if configured) or a platform-specific location (if not
configured). RMAN automatically backs up the current control file using
the default format of |
[AUXILIARY] CHANNEL
[
integer
] DEVICE
TYPE
deviceSpecifier
|
Specifies the standard or AUXILIARY
channel that you are configuring or clearing, as well as the device type (DISK
or sbt
) of the channel. Either configure a generic channel or specify a channel number, where integer
is less than 255
.
If you configure a generic channel (that is, if you do not specify a channel number), then RMAN uses the generic settings for every parallelized channel except any channel number that you have explicitly configured. A generic channel setting specifies options for all channels not configured explicitly. For generic channels of a specified device type, a new command erases previous settings for this device type. Assume that you run these commands: CONFIGURE CHANNEL DEVICE TYPE sbt MAXPIECESIZE 1G; CONFIGURE CHANNEL DEVICE TYPE sbt FORMAT 'bkup_%U'; The second command erases the If See Also: Oracle Database Backup and Recovery Advanced User's Guide to learn how configure automatic channels specified by channel number |
allocOperandList | Specifies control options for the allocated channel. Note that the FORMAT
parameter can specify an Automatic Storage Management disk group. The
following example configures a channel for an ASM disk group:
CONFIGURE CHANNEL DEVICE TYPE DISK FORMAT '+dgroup1'; See Also: "allocOperandList" |
CLEAR
|
Clears the specified channel. For example, CONFIGURE
CHANNEL
1
DEVICE
TYPE
DISK
CLEAR
returns only channel 1 to its default, whereas CONFIGURE
CHANNEL
DEVICE
TYPE
DISK
CLEAR
returns the generic disk channel to its default. Note that you cannot specify any other channel options (for example, PARMS
) when you specify CLEAR
. |
DEFAULT
DEVICE
TYPE [ TO
deviceSpecifier
| CLEAR ]
|
Specifies the default device type for automatic channels. By default, DISK
is the default device type. CLEAR
returns the default device type to DISK
.
By default, the The |
DEVICE
TYPE [ = ]
deviceSpecifier
|
Specifies the device type (disk or sbt) to which to apply the settings specified in this CONFIGURE
command. |
CLEAR
|
Resets backup type and parallelism settings for this device to their defaults.. |
BACKUP
TYPE
TO [ COPY | [ COMPRESSED ] BACKUPSET]
|
Configures the default backup type for disk or tape backups to either BACKUPSET,
COMPRESSED BACKUPSET
or COPY
.
For sbt devices the The default for If the backup type is set to The default location for disk backups is the flash recovery area, if
one is configured; otherwise, backups are stored in a platform-specific
location (for Unix and Windows, this is |
PARALLELISM
integer
|
Configures the device types
that are eligible for use in jobs that use automatic channels and sets
the degree of channel parallelism (DISK
is the default).
The By default, To change the parallelism for a device type to CONFIGURE DEVICE TYPE sbt PARALLELISM 3; CONFIGURE DEVICE TYPE sbt PARALLELISM 2; Note:
If you configure |
Configuring Backup Optimization: Example
This example configures RMAN so that the BACKUP
command does not back up files to a device type if the identical file has already been backed up to the device type:
CONFIGURE BACKUP OPTIMIZATION ON;
Configuring a Retention Policy: Example
This
example configures a retention policy with a recovery window of 2
weeks, and then resets the retention policy to its default value of REDUNDANCY
=
1
:
CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 14 DAYS; CONFIGURE RETENTION POLICY CLEAR;
Configuring Automatic Disk and Tape Channels: Example
This example configures generic DISK
and sbt
channels, sets the default device type to sbt
, and sets PARALLELISM
to 3
:
CONFIGURE CHANNEL DEVICE TYPE DISK FORMAT '/?/%U'; CONFIGURE CHANNEL DEVICE TYPE sbt PARMS 'ENV=(NSR_SERVER=bksrv1)'; CONFIGURE DEFAULT DEVICE TYPE TO sbt; CONFIGURE DEVICE TYPE sbt PARALLELISM 3;
Overriding the Default Device Type: Example
This example configures the default device type to sbt
, backs up the archived logs on the default sbt
channel, and then backs up the database to disk on the default disk channel:
CONFIGURE CHANNEL DEVICE TYPE sbt PARMS 'ENV=(NSR_SERVER=bksrv1)'; CONFIGURE DEFAULT DEVICE TYPE TO sbt; BACKUP ARCHIVELOG ALL; BACKUP DEVICE TYPE DISK DATABASE;
Configuring Automatic Channels Across File Systems: Example This example configures automatic disk channels across three file systems:
CONFIGURE DEVICE TYPE DISK PARALLELISM 3; CONFIGURE CHANNEL 1 DEVICE TYPE DISK FORMAT '/disk1/backup/%U'; CONFIGURE CHANNEL 2 DEVICE TYPE DISK FORMAT '/disk2/backup/%U'; CONFIGURE CHANNEL 3 DEVICE TYPE DISK FORMAT '/disk3/backup/%U'; BACKUP DEVICE TYPE DISK DATABASE PLUS ARCHIVELOG;
Configuring Automatic Channels in an Oracle Real Application Clusters Configuration: Example
This example allocates automatic sbt
channels for two nodes of an Oracle Real Application Clusters database:
CONFIGURE DEVICE TYPE sbt PARALLELISM 2; CONFIGURE DEFAULT DEVICE TYPE TO sbt; CONFIGURE CHANNEL 1 DEVICE TYPE sbt CONNECT 'SYS/change_on_install@node1' PARMS 'ENV=(NSR_SERVER=bkserv1)'; CONFIGURE CHANNEL 2 DEVICE TYPE sbt CONNECT 'SYS/change_on_install@node2' PARMS ENV=(NSR_SERVER=bkserv2)';
Clearing Automatic Channels: Example
This example clears manually numbered DISK
channels 2
and 3
and the generic sbt
channel:
CONFIGURE CHANNEL 2 DEVICE TYPE DISK CLEAR; CONFIGURE CHANNEL 3 DEVICE TYPE DISK CLEAR; CONFIGURE CHANNEL DEVICE TYPE sbt CLEAR;
Configuring and Clearing Parallelism: Example
This example sets DISK
parallelism to 2
, then changes it to 3
, then returns it to the default parallelism of 1
:
CONFIGURE DEVICE TYPE DISK PARALLELISM 2; CONFIGURE DEVICE TYPE DISK PARALLELISM 3; CONFIGURE DEVICE TYPE DISK CLEAR;
Configuring Backup Copies: Example
This example configures duplexing to 3
for DISK
backups of datafiles and control files (control file autobackups on
disk are a special case and are never duplexed) and then runs a database
backup, specifying three different file systems for the copies:
CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 3; BACKUP DEVICE TYPE DISK DATABASE FORMAT '/disk1/backup/%U', '/disk2/backup/%U', '/disk3/backup/%U';
Configuring the Snapshot Control File Location: Example This example configures a new location for the snapshot control file and then resynchronizes the recovery catalog.
CONFIGURE SNAPSHOT CONTROLFILE NAME TO '?/oradata/snap.cf';
Excluding a Tablespace from a Whole Database Backup: Example
This example excludes the example
tablespace from whole database backups, then returns the tablespace to its default value of "not excluded":
CONFIGURE EXCLUDE FOR TABLESPACE example; CONFIGURE EXCLUDE CLEAR;
Specifying Auxiliary Filenames: Example
This example duplicates a database to a remote host with a different directory structure, by using CONFIGURE
AUXNAME
to specify new filenames for the datafiles:
# set auxiliary names for the datafiles CONFIGURE AUXNAME FOR DATAFILE 1 TO '/oracle/auxfiles/aux_1.f'; CONFIGURE AUXNAME FOR DATAFILE 2 TO '/oracle/auxfiles/aux_2.f'; CONFIGURE AUXNAME FOR DATAFILE 3 TO '/oracle/auxfiles/aux_3.f'; CONFIGURE AUXNAME FOR DATAFILE 4 TO '/oracle/auxfiles/aux_4.f'; RUN { ALLOCATE AUXILIARY CHANNEL dupdb1 TYPE DISK; DUPLICATE TARGET DATABASE TO dupdb LOGFILE GROUP 1 ('?/dbs/dupdb_log_1_1.f', '?/dbs/dupdb_log_1_2.f') SIZE 200K, GROUP 2 ('?/dbs/dupdb_log_2_1.f', '?/dbs/dupdb_log_2_2.f') SIZE 200K REUSE; } # Un-specify the auxiliary names for the datafiles so that they are not overwritten # by mistake: CONFIGURE AUXNAME FOR DATAFILE 1 CLEAR; CONFIGURE AUXNAME FOR DATAFILE 2 CLEAR; CONFIGURE AUXNAME FOR DATAFILE 3 CLEAR; CONFIGURE AUXNAME FOR DATAFILE 4 CLEAR;
Specifying the Default Format for the Control File Autobackup: Example
This example turns on the autobackup feature, then changes the default format for the DISK
and sbt
devices, then clears the autobackup setting:
CONFIGURE CONTROLFILE AUTOBACKUP ON; CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '?/oradata/%F'; CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE sbt TO 'cf_auto_%F'; CONFIGURE CONTROLFILE AUTOBACKUP CLEAR; # returns to default setting of OFF
发表评论
-
Oracle 锁与锁争用
2015-05-08 02:13 4180大多数的锁都是行级 ... -
Oracle SQL Parsing
2014-07-30 22:24 1949Stages of SQL Processing Fig ... -
Oracle 11g中的direct path read(原创)
2014-06-16 23:01 5788在11g中,全表扫描可能使用direct path rea ... -
深入解析direct path read
2014-06-16 22:35 2598传统读取数据的 ... -
ORA-01555和延迟块清除
2014-06-16 21:13 206001555, 00000, "snapshot t ... -
Oracle(block clean out)的块清除
2014-06-16 21:09 1287Oracle(block clean out)的块清除Cl ... -
SCN之fast cleanout
2014-06-07 16:13 1751SQL> select dbms_rowid.row ... -
SCN之delayed block cleanout
2014-06-07 16:09 1195Block的cache header部分 ... -
Oracle rman change tracking CTWR(原创)
2014-04-25 11:10 2981block change tracking介绍Block c ... -
SSM自动段空间管理 简介
2014-03-27 19:46 1360因为ASSM的官方文档很少,经过多次的查证之后,终于弄明白了 ... -
undo表空间相关(原创)
2014-03-25 21:48 2112DML语句与undo ... -
Bitmap Index vs B-tree Index(原创)
2014-03-08 21:09 1532Introduction Conventional wi ... -
bitmap索引的深入研究
2014-03-08 14:59 1465位图(bitmap)索引是另外一种索引类型,它的组织形式与 ... -
Oracle 10g/11g Latch机制的变化
2013-01-09 18:57 1548Oracle 10g/11g Latch机制 ... -
ASM内部原理(原创)
2012-12-24 21:55 9950ASM的SGA组成 ASM实例 ... -
ASM的元数据(原创)
2012-12-18 21:16 3070概述 ASM Filesystem是建立在ASM D ... -
Oracle数据块深入分析总结
2012-04-23 12:51 7912最近在研究块的内部结构,把文档简单整理了一下,和大家分享一下。 ... -
深入理解重建索引(原创)
2012-04-10 16:58 20795什么时候需要重建索引 ... -
Oracle中B-TREE索引的深入理解(原创)
2012-04-09 20:59 15938索引概述 索引与表一样,也属于段(segment)的 ... -
深入理解Oracle中的latch(原创)
2012-04-04 18:17 11169串行化 概述 串行化 - 数据库系统本 ...
相关推荐
一、RMAN备份 1. 配置数据库到归档模式: 在归档模式下,数据库会保存所有的事务日志,以便于在发生故障时进行恢复。要检查归档状态,可以使用`ARCHIVELOG`命令。关闭数据库后,用`STARTUP MOUNT`启动到挂载状态,...
使用恢复目录可以更有效地管理和追踪备份信息,同时允许存储RMAN备份脚本。通过设置`CONTROL_FILE_RECORD_KEEP_TIME`参数,控制记录在控制文件中的备份信息保留时间。 6. **RMAN Repository**: RMAN仓库是存储在...
1. **Target Database**:这是RMAN备份的目标,即你要备份的数据库实例。 2. **RMAN Client**:客户端程序,它解析并执行备份和恢复命令,与服务器会话交互,并在控制文件中记录活动。 3. **Flash Recovery Area ...
本文档基于 Oracle 10gR2 版本,旨在为用户提供一份简洁明了的 Oracle RMAN(Recovery Manager)备份与恢复命令的手册。RMAN 是 Oracle 数据库的一个重要组成部分,用于实现数据库的备份、恢复及灾难恢复等功能。 #...
综上所述,“rman命令相关资料”涵盖了RMAN在Oracle数据库备份与恢复中的核心概念、命令语法以及最佳实践等方面的内容。对于Oracle数据库管理员而言,熟练掌握这些知识对于保障数据库的安全性和连续性至关重要。
2. **RMAN命令语法**:RMAN提供了丰富的命令集,如`BACKUP`用于创建备份,`RESTORE`和`RECOVER`用于恢复数据,以及`CONFIGURE`用于设置参数等。了解这些命令的用法是使用RMAN的关键。 3. **通道管理**:RMAN允许...
本书并非全面介绍备份和恢复概念的书籍,而是侧重于RMAN架构概述、备份和恢复数据库的基本方法、目录设置问题以及提供RMAN命令的快速参考语法图解等内容。 #### 二、RMAN架构 **RMAN架构**主要涉及以下几个关键...
RMAN命令行语法** - RMAN命令行允许用户输入各种备份、恢复、报告和配置命令。 - 例如,`TARGET /`连接无恢复目录的目标数据库,`CATALOG`指定恢复目录数据库连接。 **5. 使用示例** - 在命令行输入`% rman TARGET...
总结来说,Oracle数据库备份与恢复涉及多种策略和工具,如exp/imp用于逻辑备份,而tar结合RMAN则提供了物理备份的解决方案。理解并熟练掌握这些工具的使用,对于保障Oracle数据库的安全运行至关重要。同时,定期进行...
- **RMAN Templates**:讲述了如何使用RMAN模板进行备份和恢复操作。 - **RMAN Scripts in Toad**:介绍了如何在Toad中编写和执行RMAN脚本。 #### 九、比较与控制 - **Comparing**:涵盖了多种比较功能,如数据...