Home » sql server error 64

sql server error 64

sql server DBA 999

SQL Server Error : 1639 The eror occurs during installation of SQL Server

SQL Server Error : 1639 Details

SQL Server Error: 1639 Severity: 16 Event Logged or not: No Description: The eror occurs during installation of SQL Server Severity 16 Description: Indicates general errors that can be corrected by the user.

SQL Server error 1639 happens during the installation of SQL Server. It happens for a variety of causes, ranging from folder naming issues to SQL port issues.

We assist our customers with SQL related faults on a regular basis as part of our Server Management Services.

Let’s talk about the probable causes and solutions for this mistake today.

SQL Server installation on a Windows PC fails for a variety of reasons. … Read the rest

sql server DBA 999

SQL Server Error : 1225, Severity: 16. An invalid application lock mode was pas

SQL Server Error : 1225 Details

SQL Server Error: 1225 Severity: 16 Event Logged or not: No Description: An invalid application lock mode was passed to %ls. 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

SQL Server … Read the rest