ORA-28026: user with same external name already exists ORACLE 报错 故障修复 远程处理
文档解释
ORA-28026: user with same external name already exists
Cause: The external name specified for the user being created or altered already exists for another user.
Action: External names must be unique among users. Specify another.
ORA-28026错误表明尝试创建一个外部用户时,同一个外部名称的用户已经存在。
官方解释
常见案例
一般处理方法及步骤
步骤:
1、登录到Oracle 数据库中
2、运行以下DROP USER语句来删除指定的外部名称的用户:
DROP USER
3、使用’CREATE USER’语句再次尝试创建外部名称的用户:
CREATE USER IDENTIFIED EXTERNALLY;
4、重新运行要更新的语句,以创建新的外部名称的用户。