Database development

SQL Server 2019 New Features

Database development

Microsoft’s leading database is an essential tool, with in-cloud and on-premises versions...
Read More

Advanced SQL: Insert output of the parameterized table-valued function in SQL table

Database development, Tables

In this article, I am going to demonstrate the following: How to insert the output of a table-valued function in a SQL table. How to insert...
Read More

SQL Server CRUD Operations

Statements

In database programming, there are four fundamental operations: create, read, update, and delete – CRUD operations. They are the first...
Read More

Introduction to SQL Server Identity

Database development, Tables

In this article, we will explore the basics and details of the SQL Server IDENTITY property and the...
Read More

Query Store: Showing the Impact of Indexes on Inserts

Database development, Indexes

Introduction It is common knowledge in database circles that indexes improve query performance either by satisfying the required result set...
Read More

How to Proactively Gather SQL Server Indexes Fragmentation Information

Database development, Indexes

Introduction to SQL Server Indexes Microsoft SQL Server is considered as one of the relational database management systems (RDBMS), in...
Read More

Multiple Ways to Delete Duplicates from SQL Tables

Database development, Tables

Overview This article discusses two different approaches available to remove duplicate rows from...
Read More

Using DATEADD, DATEDIFF and DATEPART T-SQL Functions in Simple Terms

Database development, Statements • 11 Comments

This article focuses on developing a basic understanding of how to use one of the most common Transact-SQL date functions: DATEADD,...
Read More

MERGE: Updating Source and Target Tables Located on Separate Servers

Database development, Statements, Tables

What is the MERGE statement? Using the MERGE statement, we can change data in a target table based on data in a source table. Using it, we...
Read More

Tracking Database Changes Using Working Folder Source Control

Database development, Source control

This article talks about a new method to version control a database using a working folder so that...
Read More
Close