oracle修改SYS密码

oracle修改(SYS)密码

首先需要切换到oracle用户

  • 通过管理员连接数据库
[oracle@e9c68076a742 /]$ sqlplus / as sysdba
  • 修改用户密码(by后面就是要设置的密码)
SQL> alter user sys identified by yourPassword;

User altered.

oracle创建用户

创建用户userName, 密码password

create user userName identified by password

添加权限

grant dba to userName

你可能感兴趣的:(docker,linux)