Home >Database >Mysql Tutorial >Oracle 11g的用户密码默认为180天过期,更改为无期

Oracle 11g的用户密码默认为180天过期,更改为无期

WBOY
WBOYOriginal
2016-06-07 17:03:361410browse

Oracle 11g中,为了让客户在半年时间内更改数据库用户密码,在默认的情况下,数据库用户的默认密码有效期为180天,而Oracle 10g默

Oracle 11g中,,为了让客户在半年时间内更改数据库用户密码,在默认的情况下,数据库用户的默认密码有效期为180天,而Oracle 10g默认数据库用户密码为无期。

查看Oracle 11g的默认数据库用户使用的密码参数文件

--1

SELECT  *  FROM  dba_profiles  WHERE  profile='DEFAULT'  AND  resource_name='PASSWORD_LIFE_TIME';

--180 天到期

更改密码为无期

--2

ALTER  PROFILE  DEFAULT  LIMIT  PASSWORD_LIFE_TIME  UNLIMITED;

linux

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn