当前位置: 代码迷 >> 综合 >> Oracle 11 如何创建 scott 用户。
  详细解决方案

Oracle 11 如何创建 scott 用户。

热度:16   发布时间:2023-12-05 22:18:37.0

Oracle 11C 做了很大的改变,集成了SQL Developer,可以方便大家的使用,scott用户已经被移除了,需要的话可以自己创建,并授予权限。

1.找到scott.sql脚本
 C:\oraclexe\app\oracle\product\11.2.0\server\rdbms\admin\scott.sql
2.在sqlplus中,用sys用户登录,执行脚本
 conn sys/密码 as sysdba
 @C:\oraclexe\app\oracle\product\11.2.0\server\rdbms\admin\scott.sql3.解锁用户
 alter user scott account unlock;
3.解锁用户
 alter user scott account unlock;

4.重置密码
 alter user scott identified by tiger;


5.scott账户可以登录了
 conn scott/tiger

6.


--------------------- 
作者:嘉逸
来源:CSDN 

  相关解决方案