When filtering through the Where Clause during data reading from the database, the IN operator can check whether the column is within certain values. …
Read More »MSSQL
Between Operator in SQL Server(TSQL)
When reading data from the database with Between Operator, we can specify a range for the data we filter in WHERE Clause. Let’s make …
Read More »Unable to access the ‘database_name’ database because no online secondary replicas are enabled for read-only access
ERROR: Error: Microsoft ODBC Driver 11 for SQL Server : Unable to access the ‘database_name’ database because no online secondary replicas are enabled for read-only …
Read More »How To Create Log Backup Using SQL Server Maintenance Plan
We perform maintenance operations in SQL Server using Maintenance Plan. In this article we will create a maintenance plan for Log Backup. I will share …
Read More »DISTINCT Clause in SQL Server(TSQL)
With Distinct Clause, you can return only one of the recurring records as a result when reading data from the table. In other words, if …
Read More »Group By Clause, SUM, MAX, MIN, AVG, COUNT and COUNT_BIG Functions in SQL Server(TSQL)
When reading data from the database, we can use GROUP BY clause when we want to group data and process on the groups we …
Read More »CONCAT Function in SQL Server(TSQL)
I would like to talk to you about a new Built-in Function, CONCAT, that comes with SQL Server 2012. As you know, before SQL …
Read More »The ‘Microsoft.ACE.OLEDB.12.0’ provider is not registered on the local machine
ERROR: The ‘Microsoft.ACE.OLEDB.12.0’ provider is not registered on the local machine. (System.Data) EXPLANATION: I received an error message when I wanted to import a …
Read More »How To Create Differential Backup Using SQL Server Maintenance Plan
We perform maintenance operations in SQL Server using Maintenance Plan. In this article, we will create a maintenance plan for differatial backup. I will share …
Read More »Order By Clause in SQL Server(TSQL)
With Order By Clause, you can sort the records returned as a result of the Select statement as ascending or descending according to the …
Read More »