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;
搞定,谢谢!
发布时间: 2012-09-05 15:19:35 作者: rapoo
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;
搞定,谢谢!