Tag: sql server

SQL Server Database Backup Encryption

Database administration, Security

To manage the data security that has been backed up by the file system as a database backup files,...
Read More

How to Pass Parameters in Dynamic T-SQL Query

Languages & Coding, T-SQL

Developers are often faced with the need to build a dynamic query, however, there are a number of pitfalls, which we will discuss further...
Read More

Database Checkpoints in SQL Server

Database development, Statements

In this article, we will talk about SQL Server Checkpoints. To enhance performance, SQL Server applies modifications to database pages in...
Read More

SQL Server: DELETE vs TRUNCATE

Database development, Statements

T-SQL provides two keywords that allow you to delete data from a table. They are DELETE...
Read More

SQL Server Unit Testing with tSQLt Framework

Frameworks, Languages & Coding, Testing

In this article, we will talk about the tSQLt framework — a free database unit testing framework for Microsoft SQL Server. You...
Read More

SQL Server Transaction Log — Part 2

Database administration, Transaction Log

This is the second article in the series dedicated to SQL Server transaction log and its specificities. Here we are going to examine the...
Read More

ROLLBACK TRUNCATE in SQL Server

Database development, Statements

Have you ever accidentally executed the TRUNCATE command on a wrong table? This will lead to all...
Read More

SQL Server Transaction Log — Part 1

Database administration, Transaction Log • One Comment

Every SQL Server database contains one or more transaction log files in addition to data files. Log files record all transactions and...
Read More

Retrieving SQL Server Metadata with Help of T-SQL

Languages & Coding, T-SQL • 2 Comments

This article contains a list of scripts that mine the SQL Server metadata in the various system functions, stored procedures, tables, and...
Read More
Close