SQL> select username, user_id, account_status,expiry_date, profile from dba_users where username ...
在CMD命令窗口中输入: sqlplus 用户名 密码 数据库本地服务名 as sysdba 如:sqlplus scott oracle as sysdba 查看用户的proifle是哪个,一般是 default : sql gt SELECT username,PROFILE FROM dba users 查看对应的概要文件 如 default 的密码有效期设置: sql gt SELECT ...
2018-01-08 16:20 1 13895 推荐指数:
SQL> select username, user_id, account_status,expiry_date, profile from dba_users where username ...
oracle数据库用户设置密码有效期后,如果密码过期,使用程序调用该用户时会报错:ORA-28001:the password has expired 可以将相关用户所属profile更改为永不过期,也可以为已过期用户更改密码 使用oracle用户以sysdba身份登录sqlplus ...
更改system的密码,然后用此用户登录数据库,在数据库里修改指定用户密码 alter user username identified by newpassword; --修改忘记密码用户的密码 让oracle数据库密码永不过期的解决办法: 1.查看用户 ...
ArcGIS的ArcSDE10突然无法连接Oracle,提示有错误: 经过查询Google,得解决办法: 第四步很重要,因为修改了前面的limit,但是在sqlplus里使用conn <oracle里的用户名>依旧提示密码过期,只要重新设置密码就好了.还好 ...
1:首先确定linux登录的用户是root 切换到数据库用户 su oracle(切记,如果这里su oracle不可以,那么就使用此命令su - oracle,这个命令切换到数据库用户肯定可以成功。) 2:进入sqlplus,注意 /和 as 之间有空格,否则报错进不去 ...
现象描述: 登陆oracle11g提示ERROR:ORA-28002: the password will expire within 1 days 告警信息: ERROR: ORA-28002: the password will expire within 1 days 原因分析 ...
如何修改oracle数据库用户密码过期策略 1. 查询数据库用户何时过期 登陆数据库PL/SQL工具,输入以下sql语句: select username,expiry_date from dba_users where username in ('TFDS','SYSTEM ...