Error:
ORA-01109: database not open
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
Like this:
Like Loading...
Related