Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: dropping multiple tables belonging to a user

Re: dropping multiple tables belonging to a user

From: Screamer <mflopes_at_bigfoot.com>
Date: Wed, 6 Oct 1999 10:01:32 +0100
Message-ID: <7tf3cc$qpo$1@duke.telepac.pt>


set pages 10000;
spo drop_table.sql;
select 'drop '||object_type||' '||object_name||';' from all_objects
where owner = '&owner'
and object_type = 'TABLE';
spo off;

Verna Legaspi <no.spam_at_host.net> wrote in message news:37F95236.3D614FFF_at_host.net...
> How do you drop multiple tables? Is it fairly simple? I just need to
> drop several tables that belong to a user. What's the best way to do
> this?
Received on Wed Oct 06 1999 - 04:01:32 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US