Blog Post

Azure Database Support Blog
1 MIN READ

Lesson Learned #328: Login failed for user 'xyz'

Jose_Manuel_Jurado's avatar
Feb 13, 2023

Today, we have a service request that our customer needs more information about a login failed ocurred in their databases. Following, I would like to share a recommendation about it.

 

If your application returned a login failed, for example, as below using SQL Server Management Studio:

 

Cannot connect to servername.database.windows.net.

===================================

Login failed for user 'XXX'. (.Net SqlClient Data Provider)

------------------------------
For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft%20SQL%20Server&Evtsrc=MSSQLServer&EvtID=18456&LinkId=20476

------------------------------
Server Name: servername.database.windows.net
Error Number: 18456


Basically, if you enable SQL Auditing, you could find out what is the error code and the state that represents among other information what is the main cause. 

 

For example, using Home->SQL Databases->MyDB | Auditing in the portal I could obtain the audit logs selecting the option View Audit Logs

 

 

You will have the list of the current audit logs 

 

 

 

And finally, 

 

 

With the state number 8 you could see a wrong password - MSSQLSERVER_18456 - SQL Server | Microsoft Learn

 

Enjoy!

Updated Feb 13, 2023
Version 3.0
No CommentsBe the first to comment