文档解释
ORA-02423: schema name does not match schema authorization identifier
Cause: a table definition with a schema name prepended to the table name does not match the schema name provided in the authorization clause of a create schema statement.
Action: make sure the schema names match.
?
ORA-02423错误出现的原因是:指定的Schema 名称与合法的授权用户的Schema 名称否不匹配。
官方解释
ORA-02423: 名为string的模式名称不匹配模式授权标识符
Cause:尝试向与授权标识符不匹配的模式提交了一条SQL 语句或者当前会话已经在操作另一个模式。
Action:使用授权标识符来执行SQL 语句或者当前会话切换到正确的模式。
常见案例
1. 当用非授权用户操作其它用户授权的Schema时,会报此错误
2. 使用create user xxx 时,Schema与username不一致时也可能出现ORA-02423错误。
正常处理方法及步骤
1. 确认当前使用的Schema/用户是否对应 `Schema Name` 与 `Schema Authorization Identifier`;
2. 使用正确的Schema/用户进行操作;
3. 如果Schema/用户已经正确,则检查ORACLE数据库表空间是否满了;
4. 如果Schema/用户有问题,则使用alter user的命令对用户的Schema进行修改,如果用户不存在,则使用create user命令创建用户,
并确认Schema名称与用户名称是一致的。