练习增加控制文件至三个
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了练习增加控制文件至三个相关的知识,希望对你有一定的参考价值。
1.查看控制文件:
SQL> select name from v$controlfile;
NAME
--------------------------------------------------------------------------------
/u01/app/oracle/oradata/ORA11GR2/control01.ctl
/u01/app/oracle/fast_recovery_area/ORA11GR2/control02.ctl
2.增加控制文件:
SQL> alter system set control_files=
2 ‘/u01/app/oracle/oradata/ORA11GR2/control01.ctl‘,
3 ‘/u01/app/oracle/fast_recovery_area/ORA11GR2/control02.ctl‘,
4 ‘/u01/app/oracle/oradata/ORA11GR2/control03.ctl‘ scope=spfile;
System altered.
3.操作系统拷贝控制文件
SQL> !cp /u01/app/oracle/oradata/ORA11GR2/control01.ctl /u01/app/oracle/oradata/ORA11GR2/control03.ctl
4.起库
SQL> startup
ORACLE instance started.
Total System Global Area 830930944 bytes
Fixed Size 2257800 bytes
Variable Size 536874104 bytes
Database Buffers 289406976 bytes
Redo Buffers 2392064 bytes
Database mounted.
Database opened.
5.查看控制文件:
SQL> select name from v$controlfile;
NAME
--------------------------------------------------------------------------------
/u01/app/oracle/oradata/ORA11GR2/control01.ctl
/u01/app/oracle/fast_recovery_area/ORA11GR2/control02.ctl
/u01/app/oracle/oradata/ORA11GR2/control03.ctl
以上是关于练习增加控制文件至三个的主要内容,如果未能解决你的问题,请参考以下文章
在Tomcat的安装目录下conf目录下的server.xml文件中增加一个xml代码片段,该代码片段中每个属性的含义与用途
spring练习,在Eclipse搭建的Spring开发环境中,使用set注入方式,实现对象的依赖关系,通过ClassPathXmlApplicationContext实体类获取Bean对象(代码片段