当创建好Oracle用户之后,一般做实验会使用scott用户来进行操作。但在使用scott用户进行练习时会发现个别命令无法使用,那是因为缺少权限,所以我们需要在管理员有用户解锁几个权限。
解锁scott用户
1.进入管理员用户
在cmd中输入sqlplus。
用户:sys as sysdba 口令:tiger。
2.解锁
alter user scott account unlock;
exit
3.退出后就可以以scott用户登录,并拥有一定的权限
用户:scott 口令:tiger。
注:练习时可以更改该用户的口令为 system,这样方便自己练习与使用。
网友评论