在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
1、如果有plsql客户端,则可以使用该用户登录,选中所有表 右键Drop即可。 drop user user_name cascade; 加了cascade就可以把用户连带的数据全部删掉。 删除后再创建该用户。 --创建用户 create user 用户名 profile default identified by 密码 default tablespace 表空间名称 temporary tablespace TEMP account unlock; --授权 grant dba to 用户名; grant connect,resource to 用户名; 3、如果没有删除用户的权限,则可以执行: select 'drop table '||table_name||';' from cat where table_type='TABLE' table_name是要查询的表名,''里的内容是进行字符拼接 将会输出一批删除表的sql语句,执行这些SQL语句就可以了。 |
请发表评论