password/authentication parameters

  • I know you can look at properties to tell what type of authentication is set in SQL Server, but is there a command or place to look to tell what password parameters are set?

  • Select SERVERPROPERTY('IsIntegratedSecurityOnly ')

    [font="Times New Roman"]-- RBarryYoung[/font], [font="Times New Roman"] (302)375-0451[/font] blog: MovingSQL.com, Twitter: @RBarryYoung[font="Arial Black"]
    Proactive Performance Solutions, Inc.
    [/font]
    [font="Verdana"] "Performance is our middle name."[/font]

  • The answer to this query is 0. Does this mean we have no restrictions set?

    Thanks very much!

  • it means that you are using Mixed authentication mode instead of Windows-only authentication.

    [font="Times New Roman"]-- RBarryYoung[/font], [font="Times New Roman"] (302)375-0451[/font] blog: MovingSQL.com, Twitter: @RBarryYoung[font="Arial Black"]
    Proactive Performance Solutions, Inc.
    [/font]
    [font="Verdana"] "Performance is our middle name."[/font]

  • Thank you, I understand about Windows/mixed mode.

    I was just trying to determine if there are other password parameters that can/should be set, such as length, special characters, etc. Again thanks very much for the responses.

  • In SQL Server 2005 there are 2 options "Enforce password policy" and "Enforce password expiration". These 2 options are specific to SQL Server accounts. these options are just yes/no. properties for these options are controlled by windows or active directory domain. SQL server enforces the SQL server accounts with these options turned to adhere to user account policies set in Windows or the active directory that the SQL server is part of. Hope that helps.

  • Hi

    If you want special characters , lenght etc in passwords you are better off using Windows authentication. You can have mixed mode as your authentication mode but the users connecting to your sql server be windows users.

    Windows authentication has more security features and is also recommened by MS.

    Make sure the sa pwd is known only to a limited numer of people. 😉

    "Keep Trying"

Viewing 7 posts - 1 through 6 (of 6 total)

You must be logged in to reply to this topic. Login to reply