How can I drop all user tables in oracle?
I have problem with constraints. When I disable all it is still no possible.
begin for i in (select 'drop table '||table_name||' cascade constraints' tbl from user_tables) loop execute immediate i.tbl; end loop; end;