Join this online user group to communicate across Security product users and IBM experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.
Here is one example that explains how we can figure out the details of an account password policy in IGI database.
In this example, we have a manualservice and password policy is enabled with 180 days of password expiry settings:
We can connect to igi database, schema igacore and use below query to find this in database:
SELECT * from PWDCFGCNT cnt, PWDCFG cfg WHERE cfg.name='ManualService' AND cnt.PWDCFG=cfg.id
Copy