Monday, July 23, 2012
Getting Started with Data Quality Services of SQL Server 2012 Using SSIS
Creating a knowledge base and cleansing data using Data Quality Services in SQL Server 2012
Getting Started with SQL Server 2012 Data Quality Services
Getting Started with Master Data Services (MDS) In SQL Server 2012
Snapshot Isolation Level in SQL Server - What, Why and How Part 2
Snapshot Isolation Level in SQL Server - What, Why and How - Part 1
Sunday, March 4, 2012
Managing and Connecting to AlwaysOn Availability Groups
Configuring and Creating An AlwaysOn Availability Group in SQL Server 2012
SQL Server 2012 AlwaysOn Availability Group Environmental Setup
Continuing from AlwaysOn Part 1 the series continues with a step-by-step guide to setting up the environment for an AlwaysOn availability group. In this article we will break down AlwaysOn environment preparation into three steps :
1. Installation of SQL Server 2012 on each node/replica/server.
2. Installation of the failover clustering feature on each node/replica/server.
3. Creation of a failover cluster and joining all nodes/replicas/servers to the cluster.
For more information click here.
Using The AlwaysOn Feature of SQL Server 2012
New User-defined Server Roles in SQL Server 2012
Monday, February 13, 2012
New Built-In TSQL Functions in SQL Server 2012
Contained Database Authentication feature in SQL Server 2012
Usage and Benefits of Using WITH RESULT SETS In SQL Server 2012
The WITH RESULT SETS clause can also be used with a stored procedure, which returns multiple result sets and for each result set you can define the column name and data types for each column separately, for more information click here.
Tuesday, January 10, 2012
Managing and Monitoring SQL Server Service Broker Environments
Understanding Sequence Object in SQL Server Denali
Until SQL Server 2008 R2, the Identity column was used to generate sequential numbers to identify records in a table, mostly used as a primary/foreign key. The scope of the identity column is the table on which it has been created, and the next sequential number is created when the DML statement is executed. But what if you want to have sequential generation of numbers across tables (instead of tying the numbers with just one table), and you want to have the next sequence number even before execution of the DML statement? SQL Server Denali has a new feature called Sequence object for these purposes, while retaining Identity column functionality too, for information click here.
