Error:
ORA-01122: database file %s failed verification
Solutions:
- Start the database in mount state:
startup mount
2. Recover the database with controlfile backup:
alter database recover using backup controlfile;
3. Open the database in resetlogs:
alter database open resetlogs;
4. Shutdown and open the database in normal state:
shutdown immediate;
Startup