Home > Link, Microsoft SQL Server, MSBI, Optimization, Query, Script, SQL Mentalist, SQL PraRup, SQL Query, SQL Server, Technology,, TSQL, Vishal Pawar > BI SQL # 132 : SQL Server DBA Scripts : Report Login Failures

BI SQL # 132 : SQL Server DBA Scripts : Report Login Failures

Hi Folks,

In this article we are going to cover How to Report Login Failures.

In this post we are going to discuss following points:

  • Problem Statement of SQL Script:
  • Description of SQL Script:
  • Input Parameter of SQL Script
  • SQL Script Code
  • User Level to execute

Problem Statement of SQL Script:

Find the failed login attempts if any in given range of time?

Description of SQL Script:

To report the failed login attempts if any in given

Range of time.

Input Parameter of SQL Script

Specify the time limit parameter in minutes for the SP. Default is 15 mins.

Exec ReportLoginFailure 600

SQL Script Code

CREATE PROC ReportLoginFailure (@TimeinMin INT = 15)
AS
DECLARE @Count INT

CREATE TABLE #ErrorLog (
    ErrorLoggedDate DATETIME
    ,ProcessInfo NVARCHAR(50)
    ,ErrorText NVARCHAR(1000)
    )

INSERT INTO #ErrorLog
EXEC sp_readerrorlog

SELECT @Count = Count(*)
FROM #ErrorLog
WHERE ErrorText LIKE 'Login failed for user%'
    AND datediff(Minute, ErrorLoggedDate, getdate()) <= @TimeinMin

IF @Count > 0
BEGIN
    SELECT Report = Cast(@Count AS VARCHAR) + 
        ' Login Failures Reported in past ' + Cast(@TimeinMin AS VARCHAR) + 
        ' Minutes.'

    SELECT *
    FROM #ErrorLog
    WHERE ErrorText LIKE 'Login failed for user%'
        AND datediff(Minute, ErrorLoggedDate, getdate()) <= @TimeinMin
END
ELSE
    SELECT Report = 
        'No Login Failures Reported in the Specified Time Frame.'

DROP TABLE #ErrorLog
GO

User Level to execute

300

Hope you will like How to Report Login Failures.

If you really like reading my blog and understood at least few thing then please don’t forget to subscribe my blog.

If you want daily link and analysis or interesting link go to following website which will give @ your inbox please subscribe our following link resource blog :

Link Resource Website

For More information related to BI World visit my Mentalist Blog

SQL Server Mentalist >> SQL Learning Blog

Business Intelligence Mentalist >> BI World

Infographic Mentalist >> Image worth explaining thousand Words

Microsoft Mentalist >> MVC,ASP.NET, WCF & LinQ

DBA Mentalist >>Advance SQL Server Blog

Microsoft BI Mentalist >> MS BI Development Update

Connect With me on

| FaceBook |Twitter | linkedIn| Google+ | WordPress | RSS |

Advertisement
  1. No comments yet.
  1. No trackbacks yet.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: