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

Home -> Community -> Usenet -> c.d.o.misc -> Re: How to DROP ALL TABLEs?

Re: How to DROP ALL TABLEs?

From: Raymond Allo <idefix_at_sydney.net>
Date: 1998/05/18
Message-ID: <355fe175.0@gandhi.apic.net>#1/1

Try this script

set pagesize 0
set heading off
set feedback off
spool droptab.sql
select 'drop',table_name,';' from cat where table_type='TABLE'; spool off
@droptab.sql Received on Mon May 18 1998 - 00:00:00 CDT

Original text of this message

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