tekdudedude
Technical User
- Sep 29, 2007
- 79
Hello,
I have a database that only has two control files and I want to add a third. I want to add X:\oradata\DB1\recovery3\control03.ctl. The only docs I seem to be able to find with examples are all 9i and older.
Will this work in 10g?
Thanks,
TD
I have a database that only has two control files and I want to add a third. I want to add X:\oradata\DB1\recovery3\control03.ctl. The only docs I seem to be able to find with examples are all 9i and older.
Will this work in 10g?
Code:
SQLPLUS> ALTER SYSTEM SET control_files='C:\oradata\DB1\recovery1\control01.ctl',
'D:\oradata\DB1\recovery2\control02.ctl','X:\oradata\DB1\recovery3\control03.ctl' SCOPE=SPFILE;
SQLPLUS> shutdown immediate
SQLPLUS> HOST copy C:\oradata\DB1\recovery2\control02.ctl X:\oradata\DB1\recovery3\control03.ctl
SQLPLUS> startup
SQLPLUS> SELECT name FROM v$controlfile;
Thanks,
TD