SQL Server login failed for user sa | Reason: The account is disabled (error 18470 sql server)

SQL Server has two types of authentication namely,

  1. Windows authentication
  2. Mixed mode (Windows and SQL Server authentication).

If the Mixed mode authentication is not enabled on the server, there will be some issues.

  1. could not connect using SQL Server Authentication
  2. The ‘sa’ account will be disabled.

For security reasons, the ‘sa’ account is usually disabled, as it is a well-known SQL server account and it’s often targeted by malicious users. And so, be thoughtful while enabling the ‘sa’ account. And it’s recommended that you use a strong password.

Enable mixed-mode authentication:

  • Login into the server using Windows authentication.
  • Right-click your server and go to Properties, then select Security.
  • Under the Server Authentication section, you will find that the “Windows Authentication Mode” radio button is selected.
  • So, your work is to select the “SQL Server and Windows Authentication Mode” radio button.

SQL Server login failed for user. Reason: The account is disabled (Microsoft SQL Server, Error: 18470)

  • Then click Ok.
  • Right-click the server again and select “Restart”
  • That is it! You have now enabled mixed-mode authentication on your server.

Enabling the disabled account.

  • Login using Windows authentication.
  • Go to Security, then log in. You will find the disabled account with the small red arrow beside them
  • Right-click the login name and go to Properties.
  • You should see something like this with the “Disabled” radio button checked.
SQL Server login failed for user. Reason: The account is disabled (Microsoft SQL Server, Error: 18470)


You need to check the Enabled radio button like this

SQL Server login failed for user. Reason: The account is disabled (Microsoft SQL Server, Error: 18470)


Restart the server.
Another easier way of enabling ‘sa’ account and setting a password using a query as shown below.

ALTER LOGIN sa ENABLE;

GO

ALTER LOGIN sa WITH PASSWORD = ‘you new strong password’;

GO

That’s it! You have Mixed mode authentication and account enabled.

Have questions? Contact the technology experts at InApp to learn more.