Resetting Password Expiration Interval | Teradata Vantage - Resetting the Password Expiration Interval - Advanced SQL Engine - Teradata Database

Security Administration

Product
Advanced SQL Engine
Teradata Database
Release Number
17.05
17.00
Published
September 2020
Language
English (United States)
Last Update
2021-01-23
dita:mapPath
ied1556235912841.ditamap
dita:ditavalPath
lze1555437562152.ditaval
dita:id
B035-1100
lifecycle
previous
Product Category
Teradata Vantageā„¢
You should set passwords to expire as part of basic system setup, as described in Creating the Security Administrator User. If you are unsure whether or not passwords are set to expire on your system, execute one of the following SQL statements to check the value:
  • SELECT ExpirePassword FROM DBC.SecurityDefaultsV;

    This global value affects all users. If the value is 0, you can reset it to a non-zero value. Teradata recommends that you set the password expiration interval to a value between 90 and 270 days. Reset the value as follows:

    UPDATE DBC.SysSecDefaults
    SET ExpirePassword=90;
    You must restart the database for this change to take effect.
  • SELECT profile_name, ExpirePassword FROM DBC.ProfileInfoV;

    This value affects only users that are members of the profile. If the value for EXPIRE is 0 or NULL, MODIFY the profile to specify a non-zero value, as follows:

    MODIFY PROFILE  profile_name  AS PASSWORD = (EXPIRE = 90);

If you change the expiration value in either a profile or the system table, the system causes all affected user passwords to expire.