Understanding the Importance of Memory Setting in SQL Server
Memory is one among the resources forming the performance triangle—CPU and storage being the...
SQL Server Table Partitioning and Partitions Tutorial
Problem In this article, we will focus on the demonstration of table partitioning. The simplest explanation of table partitioning can be...
Oracle Database Security – Encryption and Decryption
Data encryption is very important because it’s a way to protect the current and the archived data in order to ensure its confidentiality....
Microsoft SQL Operations Studio: Configuration and Querying
In my previous article, Microsoft SQL Operations Studio: Understanding and Installation, we...
Microsoft SQL Operations Studio: Understanding and Installation
SQL Server Management Studio is considered as the default integrated graphical user interface tool that has been used for many years to...
Struggling with Data Export from Microsoft Dynamics 365 CRM to External Portals
Though Microsoft Dynamics 365 does not offer any built-in feature to export the CRM data to external portals so far, there is a simple way...
T-SQL BEST Practices
In this article, we will discover some best practices of T-SQL queries. Badly written queries can...
Grouping Data using the OVER and PARTITION BY Functions
The OVER and PARTITION BY functions are both functions used to portion a results set according to specified criteria. This article explains...
Restoring Database with CDC Enabled
In this post, I am going to talk about an issue I found while restoring a backup of CDC enabled database to a different SQL instance. You...
SQL Server – Dissect the Internals of sp_spaceused
This article is an effort to dissect the output of the sp_spaceused stored procedure. Introduction...