ORA-01033: ORACLE initialization or shutdown in progress


Solution 1:

if you have a backup of the database + archive logs: restore and recover

without backup, the tablespace became useless: drop it while in mount mode, then open the database

i.e.

sqlplus /nolog
SQL> connect / as sysdba
SQL> shutdown abort
SQL> startup nomount
SQL> alter database mount;
SQL> alter database open;

your oracle ready to rocks