Home » SQL Server Error : 1418, Severity: 16. The server network address “%.*ls” can n

SQL Server Error : 1418, Severity: 16. The server network address “%.*ls” can n

sql server DBA 999

SQL Server Error : 1418 Details


SQL Server Error: 1418
Severity: 16
Event Logged or not: No
Description:
The server network address “%.*ls” can not be reached or does not exist. Check the network address name and that the ports for the local and remote endpoints are operational.
Severity 16 Description:
Indicates general errors that can be corrected by the user.

Reading sql server error log location from SQL Query

Identifying SQL Server Error Log File used by SQL Server Database Engine can be done by reading SQL Server Error Logs. DBA can execute the XP_READERRORLOG extended stored procedure to read the SQL Server Error Log and search for its location used by the instance of SQL Server.

USE master
Go
xp_readerrorlog 0, 1, N'Logging SQL Server messages in file', NULL, NULL, N'asc'
Go

 

Solution for Resolving the Error

Check whose account is executing the SQL server by going to services.msc. Assign the identical credentials to the sql server and sql server agent services.

In mirroring check following:

Step 1 should be duplicated on the mirror database server. Provide the same credentials as for the primary server. If the user does not exist, create one using the identical credentials on both systems.

Now that you have the principal server, go to Security->Login in SQL Server and create a new login. Assign Sysadmin and public roles to the server. The identical user should be added to the mirror server as well.

 

SQL Server Error Code and solution summary


SQL Server Error: 1418
Severity: 16
Event Logged or not: No
Description:
The server network address “%.*ls” can not be reached or does not exist. Check the network address name and that the ports for the local and remote endpoints are operational.

Leave a Reply

Your email address will not be published. Required fields are marked *