Oracle 删除用户时出现异常ora-01922: CASCADE

来源:互联网 发布:淘宝是网站吗 编辑:程序博客网 时间:2024/06/13 03:54
Oracle 删除用户时出现错误ora-01922: CASCADE must bu specified to drop 用户名

drop uer 用户名:? 时出现下边错误

ora-01922: CASCADE must bu specified to drop 用户名

?

drop user 用户名? cascade;

注意:

drop user xx :只是删除用户

drop user xx cascade :会删除此用户名下的所有表和视图

0 0