To drop all the tables(only tables) of a user you can use the following query.
select 'drop table '||table_name||' cascade constraints;' from user_tables;
Spool the result of this query and execute it.
The reason for doing the work is to create something useful that helps people. Please click the ads if my articles are useful for you. Definitely, that's not enough. My target is working at some great organizations, such that one day, all the people with internet access can benefit from the service I contributed.
Comments
Post a Comment