I want to run a report to make sure the password of every user is set to expire every 30 days, but the expiration interval doesn't seem to be stored in syslogins?
|
feedback
|
|
you can get report with following proc:
it is always a good idea to check source code of those system procedures (stored in sybsystemprocs database) which manipulate with records you are looking for (in this case it is sp_addlogin, sp_modifylogin) | ||||
|
feedback
|
|
You can use sp_configure to set all users password expiration date
will set all users passwords to expire after 30 days. Not sure if this value can be read for a report though. The default is 0. | |||
|
feedback
|
|
try exec sp_displaylogin to get the perms for the settings for an individual user, logged in as that user. | |||
|
feedback
|