Database development

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

Using Working Folder to Source Control Database

Database development, Source control

This article is a walkthrough of how to use the working folder option of source control for managing SQL Server databases. In this article,...
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

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

Moving Existing Table From Primary Filegroup to Different Filegroup

Database development, Tables

In this article, I am going to explain how to move a table from the Primary filegroup to the Secondary filegroup. First, let’s understand...
Read More

Main Usage of sys.dm_os_wait_stats

Database administration, Database development, Troubleshooting Issues, Views

As you know, the main responsibility of the database administrator lies in the monitoring of the SQL Server performance and intervening in...
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

Exporting Oracle Table to Excel Worksheet

Database administration, Database development, Tables, Work with data

In this article, I will explain how we can divide and export data of an Oracle database table into...
Read More
Close