Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> Re: Deleting a schema in Oracle 9i
see following example. schema name is test.
SQL> connect test/test
Connected.
SQL> create table tab1 (col1 number);
Table created.
SQL> connect / as sysdba;
Connected.
SQL> desc test.tab1;
Name Null? Type ----------------------------------------- -------- ------- COL1 NUMBER
SQL> drop user test cascade;
User dropped.
SQL> desc test.tab1
ERROR:
ORA-04043: object test.tab1 does not exist
"John" <johnyetter_at_earthlink.net> wrote in message news:<Q8n9d.9027$M05.7205_at_newsread3.news.pas.earthlink.net>...
> Hi All,
>
> Can anyone tell me how to delete a schema (and all of its related tables and
> views) in a step or two?
>
> Thanks
Received on Fri Oct 08 2004 - 02:49:59 CDT