Dear Experts,
we are using Oracle 10g on RHEL5.4 64Bit ecc 6.0 with eph 4 i have moved all my sap data files along with Temp file.
when i startup my database getting error.
SQL> startup mount
ORACLE instance started.
Total System Global Area 535662592 bytes
Fixed Size 1334380 bytes
Variable Size 306185108 bytes
Database Buffers 222298112 bytes
Redo Buffers 5844992 bytes
ORA-00205: error in identifying control file, check alert log for more info
when i checked initSID.ora then found old location of control file.
1)/oracle/SID/sapdata1/cntrl
2)/oracle/SID/origlogA/cntrl
3)/oracle/SID/origlogB/cntrl
i have manually changed location of control file.
1)/oracle/SID/sapdata10/cntrl
2)/oracle/SID/origlogA/cntrl
3)/oracle/SID/origlogB/cntrl
SQL> Create Pfile from Spfile;
File Created.
i would like to mount my database from Pfile plese help me i execute scripts below.
SQL> STARTUP MOUNT=/oracle/SID/ORACLE_HOME/dbs/initSID.ora
invalid startup option.
or suggest me some other way so that i can startup my Database.
with Regards
Request clarification before answering.
SQL> show parameter control_file;
NAME TYPE
-
-
VALUE
-
control_file_record_keep_time integer
30
control_files string
/oracle/PRD/origlogA/cntrl/cntrlPRD.dbf,
/oracle/PRD/origlogB/cntrl/cntrlPRD.dbf,
/oracle/PRD/sapdata10/cntrl/cntrlPRD.dbf
SQL> startup pfile='/oracle/PRD/102_64/dbs/initPRD.ora';
ORA-01081: cannot start already-running ORACLE - shut it down first
SQL> shutdown immediate
ORA-01507: database not mounted
ORACLE instance shut down.
SQL> STARTUP PFILE='/oracle/PRD/102_64/dbs/initPRD.ora';
ORACLE instance started.
Total System Global Area 1191182336 bytes
Fixed Size 2083496 bytes
Variable Size 603981144 bytes
Database Buffers 570425344 bytes
Redo Buffers 14692352 bytes
Database mounted.
ORA-01122: database file 1 failed verification check
ORA-01110: data file 1: '/oracle/PRD/sapdata10/system_1/system.data1'
ORA-01207: file is more recent than control file - old control file
SQL>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
ORA-01207: ORA-01207 file is more recent than controlfile - old controlfile
Cause: The control file change sequence number in the datafile is greater than the number in the control file. This implies that the wrong control file is being used. Note that repeatedly causing this error can make it stop happening without correcting the real problem. Every attempt to open the database will advance the control file change sequence number until it is great enough.
Action: Use the current control file or do BACKUP CONTROLFILE RECOVERY to make the control file current. Be sure to follow all restrictions on doing a BACKUP CONTROLFILE RECOVERY.
You must run the RECOVER command after restoring a backup control file, even if no datafiles have been restored.
You must open the database with the RESETLOGS option after performing either complete or point-in-time recovery with a backup control file.
Hope this helps.
Regards,
Deepak Kori
| User | Count |
|---|---|
| 5 | |
| 4 | |
| 4 | |
| 3 | |
| 2 | |
| 2 | |
| 2 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.