How to implement the multiple control files for an existing
database ?
Answer Posted / azhar ali khan
1)Check number of controlfiles.
SQL>select name from v$controlfile.
Suppose there are two controlfiles,control01.ctl and control02.ctl.Check the path of controlfiles.
SQL>Shut immediate.
Go to the controfile location.
$ls
control01.ctl control02.ctl
$cp control01.ctl control03.ctl
$ls
control01.ctl control02.ctl control03.ctl
Now open parameter file init<sid>.ora .
$vi init<sid>.ora
control_files='/home/..../control01.ctl','/home/.../control02.ctl','/home/...../control03.ctl'
save and quit
SQL>startup
SQL>Now check the name and path of controfiles.
Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are the consideration at tehe migration of Oracle 9i to 10G.
What is an Oracle Data Dictionary?
What is an Oracle Data Block?
Teradata: How can we know the indexed column in a table?
Can a View based on another View in Oracle?
What is an Oracle Rollback Segment?
What is the function of Redo Log in Oracle?
What are the uses of Oracle Rollback Segment?
Can a Tablespace hold objects from different Schemes in Oracle?
What are Oracle Schema Objects?
What is an oracle database schema?
What is the use of Oracle Control File?
What is an Oracle SYSTEM tablespace and when is it Created?
What is an Integrity Constrains in Oracle?
How to calculate the approximate size of the SGA based on the size of the block,shared_pool,redo_buffer_cache and db_buffer_cache?