Category: SQL Server

SQL Server Error Code – 18264 database backed up. database: %s, creati

In this blog post, you’ll learn more about the SQL Server Error Code 18264 and the error message description that is shown SQL Server Error Code 18264 SQL Server Error Description for the Code :18264 Database backed up. Database: %s, creation date(time): %s(%s), pages dumped: %I64d, first LSN: %s, last LSN: %s, number of dump devices: %d, device information: (%s). This is an informational message…

How to Declare a variable in SQL Server ?

You will most likely declare a variable in the SQL Server and use it in the SQL Statements. You can use the DECLARE statement and specify the variable and datatype and optionally provide a default value. For example , You can declare an NewEmployeeJobTitle variable using the DECLARE statement and provide a default value as ‘Chief Executive Officer’ DECLARE @NewEmployeeJobTitle nvarchar(50) = ‘Chief Executive Officer’;…

SQL Server Error Code – 8636 the query processor could not produce a

In this blog post, you’ll learn more about the SQL Server Error Code 8636 and the error message description that is shown SQL Server Error Code 8636 SQL Server Error Description for the Code :8636 The query processor could not produce a query plan because there is a subquery in the predicate of the full outer join. This is not supported for distributed queries.

SQL Server Error Code – 21773 the distribution database ‘%s’ cannot be

In this blog post, you’ll learn more about the SQL Server Error Code 21773 and the error message description that is shown SQL Server Error Code 21773 SQL Server Error Description for the Code :21773 The distribution database ‘%s’ cannot be opened due to inaccessible files. The database will be dropped, but distribution database cleanup tasks will not occur. Check the database and server error…