Automating Index Defragmentation in MS SQL Server Database
Preface The World Wide Web offers a bunch of information on SQL Server index defragmentation or SQL...
Insight into SQL Server Unique Constraints
What are unique key constraints? A unique constraint is a rule that restricts column entries to unique. In other words, this type of...
Extended Events for SSAS
Cubes require frequent monitoring since their productivity decreases quite often (slowdowns during query building, processing time...
CHECK Constraints in SQL Server
In this article, we will talk about CHECK constraints. We will see how to add CHECK constraints to...
Pivot Tables in MySQL
Briefly about Pivot tables Pivoting data by means of tools (dbForge Studio for MySQL) Pivoting data by means of SQL T-SQL-based example for...
Deploying Database from Source Control
These days, development teams start new projects from choosing a version control system. There are many benefits of source control systems...
Database Checkpoints in SQL Server
In this article, we will talk about SQL Server Checkpoints. To enhance performance, SQL Server...
SQL Server: DELETE vs TRUNCATE
T-SQL provides two keywords that allow you to delete data from a table. They are DELETE and TRUNCATE. These are alike in what they are...
ROLLBACK TRUNCATE in SQL Server
Have you ever accidentally executed the TRUNCATE command on a wrong table? This will lead to all data loss. The worst thing is that you...