oracle 数据库 system 用户 登录 揭示system ora-01031 解决方案

oracle 数据库 system 用户 登录 提示system ora-01031 解决方案1.使用超级用户登录conn sys/password as

oracle 数据库 system 用户 登录 提示system ora-01031 解决方案
1.使用超级用户登录
conn sys/password as sysdba;

2.更新system账号密码
alter user system identifited by password;

3.为system 用户授权

grant sysoper to system;

搞定,谢谢!