Category: SQL Server

SQL Server Error Code – 35297 log backup for database “%.*ls” on secon

In this blog post, you’ll learn more about the SQL Server Error Code 35297 and the error message description that is shown SQL Server Error Code 35297 SQL Server Error Description for the Code :35297 Log backup for database “%.*ls” on secondary replica created backup files successfully but could not ensure that a backup point has been committed on the primary.  This is an informational…

using IN clause to provide a list of values for Search Criteria

In SQL Server , you can use the IN clause to providing the list of values for a search criteria. For example , you want to display the employee records who’s job title is one of the following : ‘Design Engineer’,’Tool Designer’. The above query uses the IN clause to filter the employee records using the arbitrary list of values. Alternatively , you can also…