Oracle 11 如何创建 scott 用户。

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 

猜你喜欢

转载自blog.csdn.net/qq_38097573/article/details/83721571