Oracle报错及解决

Oracle报错及解决,第1张

Oracle报错及解决[持续更新]
  • 1. ORA-12505
  • 2. ORA-28001

1. ORA-12505

完整报错:

Listener refused the connection with the following error: ORA-12505, 
TNS:listener does not currently know of SID given in connect descriptor

报错原因:
连接数据库时, 服务名/SID填写错误!
解决方法:
查询自己的真实SID, 修改连接时的SID定义, 重新连接即可 !

2. ORA-28001

完整报错:

[99999][28001] ORA-28001: the password has expired.

报错原因:
密码长时间未修改, 超过密码更新过期策略设置的过期时间
解决方法:
方法一: 使用sysdba 修改密码
方法二: 将密码过期策略中的过期时间设置为永不过期

  1. 查看当前的过期时长 :180天
select * from dba_profiles where profile='DEFAULT' and resource_name='PASSWORD_LIFE_TIME';

  1. 修改过期策略
alter profile default limit password_life_time unlimited;
  1. 再次查看过期时长, 现在为永不失效
select * from dba_profiles where profile='DEFAULT' and resource_name='PASSWORD_LIFE_TIME';


4. 重新为用户设置密码, 如scott用户

alter user scott identified by tiger

持续更新中…!
欢迎大家留言一起讨论学习!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/801212.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-07
下一篇 2022-05-07

发表评论

登录后才能评论

评论列表(0条)

保存