September 9, 2011 at 3:55 pm
When password policy is checked for a SQL Server login account, after 'X' successive failed logins, the account get's locked.
How to determine the max. number of failed login attempts 'X' before an account gets locked? Is it a setting that can be controlled on the SQL Server level in order to lock an account after a limited no. of failed attempts?
September 9, 2011 at 4:26 pm
That is set in the Group Policy.
Perhaps this may provide you with some insight.
For better, quicker answers on T-SQL questions, click on the following...
http://www.sqlservercentral.com/articles/Best+Practices/61537/
For better answers on performance questions, click on the following...
http://www.sqlservercentral.com/articles/SQLServerCentral/66909/
September 12, 2011 at 3:56 am
I guess it will be difficult to find out howmany attempts are left?
---------------------------------------------------
"Thare are only 10 types of people in the world:
Those who understand binary, and those who don't."
September 12, 2011 at 4:02 am
You can audit Login Attempts and go into the Windows Application Log and filter on the Event.
http://sqlandme.com/2011/07/11/sql-server-login-auditing/
For better, quicker answers on T-SQL questions, click on the following...
http://www.sqlservercentral.com/articles/Best+Practices/61537/
For better answers on performance questions, click on the following...
http://www.sqlservercentral.com/articles/SQLServerCentral/66909/
September 12, 2011 at 9:13 am
Thanks!!
September 12, 2011 at 9:17 am
You can also create a Trigger at the Server Level or the Database Level depending upon what you are trying to do.
This will be a little more effort but it will probably be easier to extract & track the information.
For better, quicker answers on T-SQL questions, click on the following...
http://www.sqlservercentral.com/articles/Best+Practices/61537/
For better answers on performance questions, click on the following...
http://www.sqlservercentral.com/articles/SQLServerCentral/66909/
September 13, 2011 at 2:09 am
+1 for adding a trigger to specific user. Ideally trigger should be based on sys.dm_exec_sessions.
Viewing 7 posts - 1 through 6 (of 6 total)
You must be logged in to reply to this topic. Login to reply