1.) TEXTE AUS OERR UNTER LINUX
// *Cause: This command can only be run when the database is in RESTRICTED mode
// *Action: Ensure that the system is in RESTRICTED mode
2.) ERKLÄRUNG
Der Fehler ORA-12719 tritt bei einem „DROP DATABASE“ auf, wenn die Datenbank nicht im restricted mode gestartet wurde.
3.) LÖSUNG
shutdown immediate
startup nomount restricted
alter database mount;
drop database;