Configure SQL Server Failover Cluster on AWS using Amazon FSx for Windows File Server – Part 1
The current article series will focus on configuring the SQL Server Always-on failover cluster on...
31 Must-Know SQL Server DBA Interview Questions – Are You Prepared?
This article will help you to prepare for SQL Server interviews. I have explained various popular SQL Server interview questions and...
SQL Server Unique Constraints
In SQL Server, constraints are certain rules that can enforce data integrity on database tables. In this article, we will explore the types...
SQL Server Synonyms
An SQL Server Synonym is a special database object used to an alias or alternative name for an...
The Difference Between UNION and UNION ALL
Twice in the last six months, I have had to get involved in the resolution of an incident associated with active database tables growing to...
SQL Server PIVOT Operator
In SQL Server, PIVOT is a powerful operator to transpose table values in the rows format to table values in column format. In this article,...
How to Connect MySQL Workbench to MariaDB
To use MySQL Workbench as a GUI for MariaDB? If you’re filled with disbelief right now, you’re...
An Overview of SQL LIKE Statement and Its Use Cases
SQL LIKE statement is used to search a similar phrase or pattern in a column. It supports ASCII and Unicode pattern matching. This...
SQL IN operator
The SQL IN statement matches a specified value from a list or subquery. It reduces our efforts to write various OR statements with equal to...
Syntax of LINQ GroupBy Method in C#
We are continuing our series dedicated to LINQ technologies with a more detailed look at some...