`

How To Move Controlfile To ASM [ID 468458.1]

阅读更多

 Applies to:

Oracle Server - Enterprise Edition - Version: 10.2.0.1 to 11.1.0.6
Information in this document applies to any platform.

Goal

This document provides information on how to move a controlfile from filesystem to ASM and Vise Versa  

Solution

1. Identify the location of the current controlfile:

SQL> select name from v$controlfile;

NAME
--------------------------------------------------------------------------------
/u01/control01.ctl'



2. Shutdown the database and start the instance:

SQL> shutdown normal
SQL> startup nomount



3. Use RMAN to move the controlfile to ASM :

$ rman nocatalog
RMAN>connect target
RMAN>restore controlfile to '<DISKGROUP_NAME>' from '<OLD_PATH>';
e.g.
RMAN> restore controlfile to '+DG1' from '/u01/control01.ctl';



4. On the ASM instance, identify the name of the controlfile using ASMCMD:


$asmcmd
ASMCMD> find -t CONTROLFILE +DG1 *



Find

Purpose:
Displays the absolute paths of all occurrences of the specified name (with wildcards) in a specified directory and its subdirectories.

 

Syntax and Description:
find [-t type] dir name



This command searches the specified directory and all subdirectories below it in the directory tree for the supplied name. name can be a directory name or a filename, and can include wildcard characters. dir may also include wildcards. In the output of the command, directory names are suffixed with the slash character (/) to distinguish them from filenames.

You use the -t flag to find all the files of a particular type (specified as type). For example, you can search for control files by specifying type as CONTROLFILE. Valid values for type are the following:

CONTROLFILE
DATAFILE
ONLINELOG
ARCHIVELOG
TEMPFILE
BACKUPSET
DATAFILE
PARAMETERFILE
DATAGUARDCONFIG
FLASHBACK
CHANGETRACKING
DUMPSET
AUTOBACKUP
XTRANSPORT

Note:
These are the values from the type column of the V$ASM_FILE view.


Changing the current directory to the diskgroup where the controlfile was created will speed the search.

Output:
ASMCMD> find -t CONTROLFILE +DG1 *
+DG1/ORCL/CONTROLFILE/current.261.639419131
ASMCMD>


Note the name assigned to the controlfile.

5. On the database Instance:

* Modify init.ora or spfile, replacing the new path to the init parameter control_files.
* if using init<SID>.ora, just modify the control_files parameter and restart the database.
* If using spfile,

1]SQL>startup nomount the database instance
2]SQL>alter system set control_files='+DG1/ORCL/CONTROLFILE/current.261.639419131' scope=spfile;
3]SQL>shutdown immediate


6. Start the instance.

Note:
In-order to have Multiple Copies/ Multiplexed Version of the controlfiles, repeat steps 3-5

 

 

分享到:
评论

相关推荐

    单节点Windows系统上的ASM.doc

    4. **数据库状态检查**:数据库转移完成后,使用 SQL*PLUS 检查数据库状态,确认 controlfile 和 datafile 已经存储在 ASM 磁盘上。 尽管 ASM 主要设计用于多节点集群环境,但在单节点 Windows 系统上,ASM 也能...

    ASM实例+ASM数据库安装(Win8+Ora10)

    SQL&gt; create diskgroup dg_data_01 external redundancy disk 'D:\ASMDISKS\ASMDISK1'; SQL&gt; create diskgroup dg_data_02 normal redundancy failgroup fg_dgdata02_01 disk 'D:\ASMDISKS\ASMDISK2' failgroup fg...

    重建ASM磁盘组的步骤

    1. **使用SQL*Plus关闭数据库实例和ASM实例:** ```bash export ORACLE_SID=+ASM sqlplus / as sysdba SQL&gt; shutdown immediate export ORACLE_SID=orcl sqlplus / as sysdba SQL&gt; shutdown immediate ``` 2...

    Oracel11.2.0.3 RAC ASM与单实例文件系统的DATAGUARD配置

    ### Oracle 11.2.0.3 RAC ASM与单实例文件系统的DATAGUARD配置 #### 实施目的 本实施方案旨在构建一种高可用性的数据库模式,即通过Oracle 11.2.0.3版本创建两个节点的ASM(自动存储管理)存储方式的RAC(Real ...

    Oracle数据库管理知识 Oracle ASM 常用知识小结总结 共18页.pptx

    1. **通过ASMCMD工具管理ASM** ASMCMD是Oracle 10g R2引入的一个命令行工具,用于更方便地管理ASM实例。通过这个工具,你可以执行一系列操作,如列出磁盘组的内容,搜索文件,创建或删除目录,查看空间利用率等。...

    oracle实验.docx

    2. 备份控制文件:`ALTER DATABASE BACKUP CONTROLFILE TO '[备份路径]';` 3. 文本方式备份:`ALTER DATABASE BACKUP CONTROLFILE TO TRACE;` 4. 删除控制文件:首先更新控制文件设置,然后关闭数据库并删除文件。 ...

    最全的oracle常用命令大全.txt

    Connected to an idle instance. SQL&gt; startup^C SQL&gt; startup ORACLE instance started. 2、在双机环境下 要想启动或关闭ORACLE系统必须首先切换到root用户,如下 su - root a、启动ORACLE系统 hareg -y ...

    Oracle ASM维护手册之-ASM存储迁移(包括各种文件迁移)

    Oracle ASM维护手册之ASM存储迁移 一、ASM 存储迁移概述 Oracle ASM(Automatic Storage Management)是一种高效的存储管理系统,旨在简化存储管理和提高数据可用性。ASM 存储迁移是指将现有的存储设备迁移到新的...

    oracle 数据库操作试题A.doc

    - 使用RMAN:`run { backup current controlfile format '/jsbw/result/con1%u_%d.ctl' tag 'con1%u'; }` - 不使用RMAN,可能需要直接复制controlfile到指定位置。 3. 备份表空间: - 使用RMAN:`run { backup ...

    ASM配置管理等相关命令

    ### ASM配置管理与相关命令详解 #### 一、ASMCMD概述 ASMCMD,即Automatic Storage Management Command-Line Utility,是Oracle数据库系统中一个强大的命令行工具,专门用于管理和操作Automatic Storage ...

    Oracle实验报告:管理控制文件

    - 执行SQL命令:`ALTER DATABASE DUPLICATE CONTROLFILE TO '/u01/app/oracle/oradata/oradb/ctrlf2.ctl';`创建一个名为`ctrlf2.ctl`的新控制文件副本到指定位置。 3. **备份控制文件** - 直接备份:`ALTER ...

    实验2Oracle数据库物理存储结构管理.doc

    备份控制文件通常使用 `ALTER SYSTEM BACKUP CONTROLFILE TO TRACE` 命令,而恢复则可能需要使用RMAN(恢复管理器)。 8. 重做日志文件管理:重做日志记录了所有事务的更改,用于数据库恢复。向组4中添加成员文件 `...

    ORACLE 数据库从AIX裸设备到ASM存储的迁移过程

    ### ORACLE 数据库从AIX裸设备到ASM存储的迁移过程 #### 概述 本文主要介绍了Oracle数据库从AIX裸设备迁移到ASM(自动存储管理)存储的过程。这一迁移通常涉及从传统的直接连接存储(DAS)或网络附加存储(NAS)等裸设备...

    Oracle数据库DBA面试题50道及答案.pdf

    - 使用ALTER DATABASE BACKUP CONTROLFILE TO TRACE命令。 14. **数据库正常启动经历的状态**: - STARTUP NOMOUNT:数据库实例启动。 - STARTUP MOUNT:数据库装载。 - STARTUP OPEN:数据库打开。 15. **...

    Oracle数据库DBA面试题及答案_经典.docx

    14. **创建备份控制文件**:`ALTER DATABASE BACKUP CONTROLFILE TO TRACE`生成备份控制文件的脚本。 15. **数据库启动状态**:NOMOUNT、MOUNT和OPEN,分别对应实例启动、数据库装载和数据库打开。 16. **区分V$和...

    Oracle11g冷备份并迁移整个数据库去另一台服务器.doc

    alter database backup controlfile to trace; select d.value||b.bias||lower(rtrim(i.instance, chr(0)))||'_ora_'||p.spid||'.t, 4. 将数据文件复制到目标服务器的目录,例如 /u01/app/oracle/oradata/rms。 5...

    oracle数据库克隆总结.docx

    * ALTER DATABASE BACKUP CONTROLFILE TO TRACE; 4. 关闭状态下的存储转移 在关闭状态下,可以使用操作系统命令将备份的文件转移到新位置。 5. 打开状态下的存储转移 在打开状态下,需要重新运行克隆数据库的...

    Actualtests Oracle 1Z0-042 V09.14.06

    - **题目背景**:题目询问了执行`ALTER DATABASE BACKUP CONTROLFILE TO TRACE;`命令后,在跟踪文件中会发现什么内容。 - **选项分析**: - A. Image of the control file (控制文件的图像) — 不正确,因为跟踪...

Global site tag (gtag.js) - Google Analytics