Tag: sql

How to create Transactional Replication

Database administration, Database Optimization & Structure

In this article, I am going to demonstrate how to create transactional replication. Transactional...
Read More

Simplifying Unit Testing Main Stored Procedure Which Also Calls a Utility Procedure

Database development, Stored Procedures, Testing

This article provides a walkthrough of database unit testing a stored procedure which contains a utility procedure within it. In this...
Read More

How to Generate Test Data in SQL Server

Database administration, Work with data

When testing the functionality of your application or the performance of a specific stored procedure or an ad-hoc query in the development...
Read More

Passing Data table as Parameter to Stored Procedures

Database administration, Stored Procedures, Work with data

Real-world database applications need to make multiple requests from the front end to the database...
Read More

Implementing Paging Using OFFSET FETCH NEXT in SQL Server

Database administration, Memory Optimization

A database can have hundreds of thousands of records. It is easy to insert and select these records via database management systems like...
Read More

Traditional and Natively Compiled Scalar-Valued User-Defined Functions

Languages & Coding, T-SQL

In the software programming world, there are several approaches used by developers that help them with effortless software development....
Read More

Similarities and Differences among RANK, DENSE_RANK and ROW_NUMBER Functions

Database development, Statements • One Comment

The RANK, DENSE_RANK and ROW_NUMBER functions are used to retrieve an increasing integer value....
Read More

Understanding Difference between EXCEPT and NOT IN Operators

Database development, Statements

Both EXCEPT and NOT IN operators are used to filter records from a table based on a specific criterion. In this article, we will look at...
Read More

Structured Query Language – Importance of learning SQL

Database administration, Database development, MySQL, Oracle, PostgreSQL, SQL Server • One Comment

Computer programming language is a set of detailed instructions for computers or machines for performing specific actions. Through a...
Read More

Understanding GROUPING and GROUPING_ID Functions in SQL Server

Database development, Statements

The ROLLUP and CUBE operators are used to return results aggregated by the columns in the GROUP BY...
Read More
Close