Home » sql server db errors

sql server db errors

sql server DBA 999

SQL Server Error : 21899 Severity: 0. The query at the redirected pu

SQL Server Error : 21899 Details

SQL Server Error: 21899 Severity: 0 Event Logged or not: No Description: The query at the redirected publisher ‘%s’ to determine whether there were sysserver entries for the subscribers of the original publisher ‘%s’ failed with error ‘%d’, error message ‘%s’. Severity 0 Description: Informational messages that return status information or report errors that are not severe. The Database Engine does not raise system errors with severities of 0 through 9.

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 … Read the rest

sql server DBA 999

SQL Server Error : 135, Severity: 15. Cannot use a BREAK statement outside the

SQL Server Error : 135 Details

SQL Server Error: 135 Severity: 15 Event Logged or not: No Description: Cannot use a BREAK statement outside the scope of a WHILE statement. Severity 15 Description: Indicates syntax errors in the Transact-SQL command.

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

The parameters for XP_READERRRORLOG are:
1. Value … Read the rest

sql server DBA 999

SQL Server Error : 136, Severity: 15. Cannot use a CONTINUE statement outside

SQL Server Error : 136 Details

SQL Server Error: 136 Severity: 15 Event Logged or not: No Description: Cannot use a CONTINUE statement outside the scope of a WHILE statement. Severity 15 Description: Indicates syntax errors in the Transact-SQL command.

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

The parameters for XP_READERRRORLOG are:
1. Value … Read the rest

sql server DBA 999

SQL Server Error : 138, Severity: 15. Correlation clause in a subquery not per

SQL Server Error : 138 Details

SQL Server Error: 138 Severity: 15 Event Logged or not: No Description: Correlation clause in a subquery not permitted. Severity 15 Description: Indicates syntax errors in the Transact-SQL command.

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

The parameters for XP_READERRRORLOG are:
1. Value of error log file we … Read the rest

sql server DBA 999

SQL Server Error : 139, Severity: 15. Cannot assign a default value to a local

SQL Server Error : 139 Details

SQL Server Error: 139 Severity: 15 Event Logged or not: No Description: Cannot assign a default value to a local variable. Severity 15 Description: Indicates syntax errors in the Transact-SQL command.

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

The parameters for XP_READERRRORLOG are:
1. Value of error log … Read the rest