Defines a password policy which is enforced on the users logging in
| Column Name | Column Datatype | Column Null Option | Column Comment |
| pwd_policy_id | varchar(50) | not null | The unique identifier for the password policy |
| lockout_time | integer | with null | The unlock time in Seconds after the user is locked |
| incorrect_pwd_count | integer | with null | The maximum number of incorrect passwords before the account should be locked |
| first_time_change | integer | with null | Flag indicating if the user have to change the password on first login |
| pwd_expire_days | integer | with null | The number of days after which the password expires |
| pwd_history_count | integer | with null | The number of last old passwords, that cannot be repeated |
| pwd_syntax | varchar(20) | with null | The perl based syntax to verify the password requirements, Too short, upper and lower comibnation etc |
| description | varchar(128) | with null | The description of the password policy |
| name | varchar(64) | with null | The readable name for the policy |
Product Name: Unicenter Service Management
Table Type: Table
Relationships:
| Primary Key | Related Table | Related Column |
| pwd_policy_id | usm_tenant | pwd_policy_id |
| pwd_policy_id | usm_system_install | pwd_policy_id |