Home > Database > Mysql Tutorial > 多路复用控制文件

多路复用控制文件

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-07 17:16:42
Original
1032 people have browsed it

多路复用控制文件,通过原有的spfile文件创建pfile文件通过vi编辑器修改pfile文件中控制文件的信息,然后再通过pfile文件创建spfi

手动添加控制文件
方法一、
1、          修改参数文件spfile中控制文件的信息
    SQL> alter system set control_files=
         '/database/oradata/yang/control01.ctl',
         '/database/oradata/yang/control02.ctl',
         '/database/oradata/yang/control03.ctl',
             '/database/control04.ctl' scope=spfile;
2、必须要正常关闭数据库后再cp控制文件(不然会提示新添加的控制文件与原有控制文件SCN不同)
SQL> shutdown immediate
SQL> host cp /database/oradata/yang/control01.ctl
/database/control04.ctl
3、          启动数据库查看
SQL> startup
SQL> show parameter control;
    或模糊查询SQL> select value from v$parameter where name like 'control_files';

方法二
通过原有的spfile文件创建pfile文件通过vi编辑器修改pfile文件中控制文件的信息,然后再通过pfile文件创建spfile文件 最后正常关闭数据库,,复制控制文件到新的位置即可。

linux

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template