ORA-01203: wrong incarnation of this file - wrong creation SCN [message #392690] |
Wed, 18 March 2009 22:47 |
sundarfaq
Messages: 235 Registered: October 2007 Location: Chennai
|
Senior Member |
|
|
Hi,
Before a days, tablespaces dropped by users in oracle databases. i have backup for this tablespaces. i need to restored this tablespaces in oracle databases.But during the restore i am getting ORA-01203: wrong incarnation of this file - wrong creation SCN error file.I have explained below what i did.
1)sqlplus system/password@sachin
SQL>CREATE TABLESPACE MIKE
LOGGING
DATAFILE 'C:\Oracle\data\MIKE1.DBF' SIZE 20M
REUSE AUTOEXTEND
ON NEXT 10M MAXSIZE UNLIMITED EXTENT MANAGEMENT LOCAL UNIFORM
SIZE 200K SEGMENT SPACE MANAGEMENT AUTO;
tablespace created.
SQL>ALTER TABLESPACE MIKE OFFLINE;
SQL>EXIT
2) enter into the OS path 'C:\Oracle\data\' and drop the mike1.dbf datafiles and paste the backup datafiles with same name
3)sqlplus system/password@sachin
SQL>ALTER TABLESPACE MIKE ONLINE;
ORA-01122: database file 6 failed verification check
ORA-01110: data file 6: 'C:\ORACLE\DATA\MIKE1.DBF'
ORA-01203: wrong incarnation of this file - wrong creation SCN
how to resolve this problem?
Is this method is correct?
Thanks,
Michael
|
|
|
|
|
Re: ORA-01203: wrong incarnation of this file - wrong creation SCN [message #392874 is a reply to message #392690] |
Thu, 19 March 2009 09:26 |
alexzeng
Messages: 133 Registered: August 2005 Location: alexzeng.wordpress.com
|
Senior Member |
|
|
Hi,
ORA-01203: wrong incarnation of this file - wrong creation SCN
Cause: The creation SCN in the file header is not the same as the creation SCN in the control file. This is probably a copy of a file that was dropped.
Action: Restore a current copy of the data file and do recovery as needed.
The problem is when and how you do the backup of the datafile.
Regards,
Alex
[Updated on: Thu, 19 March 2009 09:46] by Moderator Report message to a moderator
|
|
|
|
|
Re: ORA-01203: wrong incarnation of this file - wrong creation SCN [message #513723 is a reply to message #513720] |
Wed, 29 June 2011 03:02 |
|
Michel Cadot
Messages: 68731 Registered: March 2007 Location: Saint-Maur, France, https...
|
Senior Member Account Moderator |
|
|
Omario wrote on Wed, 29 June 2011 09:53...Give us something to work with instead of repeating the error in other wordings. What good does that for anyone? GRRRRR
...
Maybe you didn't read carefully the answers:
Michel Cadot wrote on Thu, 19 March 2009 06:29You can't do that, you have to restore your backup as a new database, export the content of the tablespace and reimport it in your new tablespace in the previous database.
...
If this is not the plan of what you have to do, what is it?
Regards
Michel
[Updated on: Wed, 29 June 2011 03:03] Report message to a moderator
|
|
|
|
|
|