首页 > 解决方案 > 在 oracle 中创建用户时出现权限不足错误。如何解决

问题描述

我正在尝试为我的数据库创建一个用户

数据:

CREATE USER Clerk IDENTIFIED BY MyPassword;

错误:

ORA-01031: insufficient privileges
01031. 00000 -  "insufficient privileges"
*Cause:    An attempt was made to perform a database operation without
           the necessary privileges.
*Action:   Ask your database administrator or designated security
           administrator to grant you the necessary privileges

但似乎我不断收到此错误

标签: sqloracle

解决方案


如果您没有CREATE USER权限,则必须联系您的 DBA 以创建用户。你不能靠自己解决这个问题。


推荐阅读