But I wish to drop a database on Oracle 9i, but cannot find a 'drop
database' command, like I find in versjon 10g. How can I drop my database?
This is on Solaris, and I cannot use any GUI tools (DBCA).
--
Regards
Odd Bjørn Andersen
ErgoGroup AS
Postboks 4364 Nydalen, N-0402 Oslo, Norway
Telefon +4723 14 50 00, Telefaks +4723 14 50 01
Mobilnr +47970 84597
www.ergogroup.no
Prior to 10g, dropping a database consisted of shutting the instance
down and manually removing its associated datafiles, logs, control
files and associated init.ora file at operating system level. You
might also want to remove any reference to it in /etc/oratab or /var/
opt/oratab.
HTH
-g
I believe the command is drop schema. See the SQL Reference manual that
came with the db or go to otn.oracle.com and download the manual.
Jim
Good point Jim. I assumed (and I _hate_ people making assumptions)
that, as the OP mentioned 10g and the drop database command, he was
aware of the concept of an Oracle database.
As for dropping a schema I do it as follows:
DROP USER <user/schema name> CASCADE;
HTH
-g