Login to Microsoft SQL Server Error: 18456

前端 未结 21 2057
醉话见心
醉话见心 2020-11-27 10:11

I am getting this error while trying to connect to the SQL Server.

Microsoft SQL Server Error: 18456

Can anybody tell me what th

21条回答
  •  青春惊慌失措
    2020-11-27 10:41

    Check out this blog article from the data platform team.

    http://blogs.msdn.com/b/sql_protocols/archive/2006/02/21/536201.aspx

    You really need to look at the state part of the error message to find the root cause of the issue.

    2, 5 = Invalid userid
    6 = Attempt to use a Windows login name with SQL Authentication
    7 = Login disabled and password mismatch
    8 = Password mismatch
    9 = Invalid password
    11, 12 = Valid login but server access failure
    13 = SQL Server service paused
    18 = Change password required
    

    Afterwards, Google how to fix the issue.

提交回复
热议问题