今天,连接ODI,出现下面的错误 oracle.odi.core.config.WorkRepositoryResourceFailureException: ODI-10182: 资料档案库访问期间出现未分类的异常错误. 进入PLSQL,用相关用户登陆,登陆失败,报错“ORA-28001: thepassword has expired”,进入解决密码过期问题. 1.用DBA 登陆PLSQL.输入语句查询ORACLE密码有效期设置,可以确认有效期为180天.LIMIT字段是密码有效天数. 2.…
ORA-28001: the password has expiredORA-28001: 密码已过期 Cause:       The user's account has expired and the password needs to be changed Action:       change the password or contact the DBA 如果已经过期了,首先需要修改密码,然后设置密码为无限期.修改以sys用户登陆. 修改密码:alter user username…
oracle 出现the password has expired这个问题,今天突然发现项目访问不了,一查发现用不了,也登不进去, 这个问题由是Oracle11g密码过期的原因导致的 调试Web项目的时候出现异常: java.sql.SQLException: ORA: the password has expired 网上查了一下,连接Oracle,以Oracle用户登陆,输入以下命令 以orcaleDBA用户登录 select * from dba_profiles where profil…
Oracle提示错误消息ORA-28001: the password has expired,是由于Oracle11G的新特性所致, Oracle11G创建用户时缺省密码过期限制是180天(即6个月), 如果超过180天用户密码未做修改则该用户无法登录. Oracle公司是为了数据库的安全性默认在11G中引入了这个默认功能,但是这个默认的功能很容易被DBA或者是开发人员给疏忽,一旦密码180天未修改过,就会出现这样的问题.解决方法有两种:解决方法可通过如下SQL语句注: 首先需要使用dba登录…
本文转自:http://blog.csdn.net/btt2013/article/details/54862420 参考文献:http://www.zhetao.com/content259 后台报ORA-28001: the password has expired 密码超时   登录数据库服务器,使用 sqlplus / as sysdba命令,进入oracle数据库 使用:select * from dba_profiles where profile='DEFAULT' and res…
今天在用dbvisualizer登录数据库的时候,报了the password has expired的错误,于是上网查了一下原因,是因为数据库密码过期了,因为默认的是180天. 解决方法: 1)用系统用户登录 su - oracle   提示输入密码. sqlplus /nolog conn sys   提示输入密码,密码为as sysdba 2)查询密码有效期 SELECT * FROM dba_profiles WHERE profile='DEFAULT' AND resource_na…
Oracle提示错误消息ORA-28001: the password has expired,是由于Oracle11G的新特性所致, Oracle11G创建用户时缺省密码过期限制是180天(即6个月), 如果超过180天用户密码未做修改则该用户无法登录. Oracle公司是为了数据库的安全性默认在11G中引入了这个默认功能,但是这个默认的功能很容易被DBA或者是开发人员给疏忽,一旦密码180天未修改过,就会出现这样的问题. 查询密码的有效期设置,LIMIT字段是密码有效天数.SELECT *…
调试Web项目的时候出现异常: java.sql.SQLException: ORA-28001: the password has expired 网上查了一下,是Oracle11g密码过期的原因 连接Oracle,以Oracle用户登陆,输入以下命令 select * from dba_profiles where profile='DEFAULT' and resource_name='PASSWORD_LIFE_TIME'; 结果显示: PROFILE -----------------…
如果已经过期了,首先需要修改密码,然后设置密码为无限期.修改以sys用户登陆. 修改密码:alter user username identified by password  密码可以和之前的密码相同也可以不同. 修改数据库密码为无限期: Oracle的密码过期规则是用Profile来管理的,系统默认只有一个Profile(DEFAULT),该profile的密码过期规则为180天.当超出这个时间时,密码就会过期,数据库不能连接.Oracle11g启动参数resource_limit无论设置为…
This document is no longer actively maintained, for info on specific (new) users in recent product editions, please check the relevant product/feature documentation. Purpose ~~~~~~~ The following table lists the default usernames and passwords you ma…