I don’t recall exactly why this script was required, but the below SQL query can be used to get the expiration date for logins in Microsoft SQL Server. Some of the data is available directly from the
sys.sql_logins
table, but other pieces had to be retrieved using the LOGINPROPERTY
function:
SELECT
[‘SQL Logins’].name AS ‘LoginName’
,LOGINPROPERTY([‘SQL Logins’].name, ‘PasswordLastSetTime’)
Continue Reading Ian Grieve’s Article on their blog
SQL Query to Get Login Password Expiry
I don’t recall exactly why this script was required, but the below SQL query can be used to get the expiration date for logins in Microsoft SQL Server. Some of the data is available directly from the sys.sql_logins table, but other pieces had to be retrieved using the LOGINPROPERTY function: ISC Software Solutions are UK and Ireland based experts on Microsoft Dynamics GP.
Blog Syndicated with Ian Grieve’s Permission
More About This Author
Array
#Dyn365GP2021.01.26Implementing Post Master Enterprise: Installation
#Dyn365GP2021.01.25Implementing Post Master Enterprise: Prerequisites
#Dyn365GP2021.01.22Implementing Post Master Enterprise: Incompatible Modules
#Dyn365GP2021.01.21Implementing Post Master Enterprise: What batch types are supported?