Is there a way to set consecutive failed login attempts to a specific number like 3 or 4 times (for SQL Server Logins)? If this count is crossed the expectation is to lock the account.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can enforce the pasword policy of the Windows server on which SQL Server is installed using the
CHECK_POLICYoption ofCREATE USER, see http://msdn.microsoft.com/en-us/library/ms189751.aspx and http://msdn.microsoft.com/en-us/library/ms161959.aspx. It’s not clear from the documentation but it does look like the user will be automatically locked out if the number of bad attempts exceeds the Windows security policy’s setting.You’ll need to administer the security policy in the domain or local security policy MMC snapin (see http://technet.microsoft.com/en-us/library/dd277400.aspx).