Oracle 创建用户 修改用户密码 授权命令

匿名 (未验证) 提交于 2019-12-02 23:49:02
原文链接:http://www.cnblogs.com/fromchaos/archive/2011/08/12/2135837.html

//以后以该用户登录,创建的任何数据库对象都属于user_temp 和user_data表空间,

删除用户命令

drop user user_name cascade;

在进行procedure执行的时候,用的是PL/SQL工具中的test,调试方法进行执行,因为有输入参数,但是报了个错:
“note:debugging requires the debug connect session system privilege”.

原因是用户权限不够,使用以下命令授予权限:
GRANT debug any procedure, debug connect session TO username
其实只需要授予debug connect session 就可以了,已经过测试。

转载于:https://www.cnblogs.com/fromchaos/archive/2011/08/12/2135837.html

文章来源: https://blog.csdn.net/weixin_30950607/article/details/96754688
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!