Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.misc -> Re: dropping a large number of tables?
In article <70o0m5$fmr$1_at_nnrp1.dejanews.com>, attwoody_at_my-dejanews.com wrote:
<snip>
>This script generates the DROP TABLE for each of the 1900+ tables. Your
<snip>
You might try also generating a 'TRUNCATE TABLE ' || Table_Name || ';' statement before the DROP TABLE statement. TRUNCATE will remove all rows without generating redo log information, while according to the documentation, DELETE removes all rows "as if they had been deleted" (question: is this the same as "if they had been DELETEd", i.e. will delete triggers be fired?)