Wednesday, December 11, 2013

刪除 User 下的所有 Table 的方法

刪除 User 下的所有 Table 的方法

A. 使用下面語法產生 Drop 的 sql script

select 'drop table '||table_name||' cascade constraints;' from user_tables;

B. 將Drop Script 執行