好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

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、重新运行要更新的语句,以创建新的外部名称的用户。

查看更多关于ORA-28026: user with same external name already exists ORACLE 报错的详细内容...

  阅读:11次