oracle怎么删除用户下所有表?

方法:1、使用“drop user user_name cascade;”语句;2、使用“select drop table ||table_name||; from cat where table_type=TABLE”语句。 ORACLE删除当前用户下所有的表的方法 1、如果有删除用户的权限,则

方法:1、使用“drop user user_name cascade;”语句;2、使用“select 'drop table '||table_name||';' from cat where table_type='TABLE'”语句。

ORACLE删除当前用户下所有的表的方法

1、如果有删除用户的权限,则可以:

删除后再创建该用户。

--创建管理员用户