SQL Server Primary Key
Across all major RDBMS products, Primary Key in SQL constraints has a vital role. They identify the...
Getting Started with SQL Server
This documentation section presents the topics on SQL Server
SQL Server System Databases – MSDB Maintenance
In the previous articles of the SQL Server System Databases series, we have gone through the System Databases that are installed by default...
SQL GROUP BY- 3 Easy Tips to Group Results Like a Pro
Grouping is an important feature that helps organize and arrange data. There are a lot of ways to...
Understanding the Database Level Collation and Impact of Changing it for a Database
When you develop an application or write a code in the SQL database system, it is crucial to understand how data will be sorted and...
10 SP_EXECUTESQL Gotchas to Avoid for Better Dynamic SQL
Do you know how powerful a tool like dynamic SQL can be? Use it the wrong way, and you can allow someone to take over your database. Plus,...
SQL Server Transactional Replication Configuration
Transactional Replication in SQL Server is one of the most commonly used Replication techniques to...
A Simple Use Case for Indexes on Primary Keys
Introduction Recently we encountered an interesting performance problem on one of our SQL Server databases that process transactions at a...
Introduction to Synonyms in SQL Server
A synonyms in SQL Server are database objects that give an alternative name to the database objects existing locally or on the remote...
Use Cases for SQL Server MERGE Statement: Syncing Online and History Tables
INTRODUCTION The SQL Server MERGE statement is an incredibly useful tool for carrying out DML...