标题: Oracle 12c 使用普通用户的步骤 [打印本页] 作者: jiawang 时间: 2024-1-21 16:32 标题: Oracle 12c 使用普通用户的步骤 报错现象:
SQL> alter user scott account unlock identified by tiger;
alter user scott account unlock identified by tiger
*
第 1 行出现错误:
ORA-01918: 用户 'SCOTT' 不存在
查询是否有SCOTT用户
SQL> select username from dba_users where username like 'SCOTT';
未选定行
创建SCOTT用户
SQL> create user scott identified by tiger;
create user scott identified by tiger