Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Drop Database
> I am relatively new to Oracle and was wondering how to drop a
> database/schema as you can in Sybase?
Dropping a schema means dropping a user with
drop user <username> [cascade];
Dropping a database means shutting down the instance and deleting every database file, control file, redo log file, archived log file, init.ora, tnsnames.ora entry, listener.ora entry, oratab entry. Or you use the database creaion assistant, which can also delete a database.
Regards,
Knut Received on Tue Mar 12 2002 - 04:10:42 CST
![]() |
![]() |