-
将scott.sql上传到根目录。
-
SSH连接到CentOS,使用sys登录Oracle,密码是之前设置的密码。
1 |
|
- 执行
scott.sql
1 |
|
- 重新解锁账户, 更改密码, 赋予dba权限。
alter user scott account unlock;
alter user scott identified by tiger;
grant dba to scott;
- 然后重新scott账户,密码tiger进行登录。
sqlplus /nolog
conn scott/tiger
- 确认是否生效。
1 |
|
- 得到以下结果即生效
1 |
|