Always remain updated about current software development trends

Articles in MS SQL SERVER

Contained Databases in SQL Server 2012

Contained Databases have been an oft requested feature which has finally arrived in SQL Server 2012. In prior SQL Server versions, database were not 100% portable. In case you need to move a database from one server to another using backup and restore, the...

LLBLGen Pro feature highlights: assigning attributes based on rules to properties in generated code.

(This post is part of a series of posts about features of theLLBLGen Prosystem)One of the things which makes some people hate generated code is that it's effectively 'read-only' code: changing it will make you run the risk that your changes are likely gone...

SQL Server Prefetch and Query Performance

Prefetching can make a surprising difference to SQL Server query execution times where there is a high incidence of waiting for disk i/o operations, but the benefits come at a cost. Mostly, the Query Optimizer gets it right, but occasionally there are queries...

A first look at SQL Server 2012 Availability Group Wait Statistics

If you are trouble-shooting an AlwaysOn Availability Group topology, a study of the wait statistics will give a pointer to many of the causes of problems. Although several wait types are documented, there is nothing like practical experiment to familiarize...

Control trigger logic based on user

This article describes a mechanism how trigger actions bypassed based on database user information

How to guarantee a fixed amount of rows in a table

This tip describes how to guarantee a fixed amount of rows in a table by using triggers

Generating INSERT statements in SQL Server

This is an alternative for "Generating INSERT statements in SQL Server"