Video : How to Setup Replication with SQL Server 2008 ?
What is Replication ? Replication is the mechanism for creating and maintaining multiple copies of the same data. Replication allows, • Multiple copies of data can be kept in sync. • Allows data be...
View ArticleVideo : How to Add a Node to an Existing SQL Server 2008 Failover Cluster
This video demonstrates, how to add a node to an existing SQL Server Failover Cluster instance. Note: To view All this Video, Please install Microsoft Silver light Tags : How to Add a Node to an...
View ArticleDeclaring and Initializing variables in one statement : SQL Server 2008 T-SQL...
In SQL Server 2008 onwards, the DECLARE statement has been enhanced to support the declaration and initialization of variables in one statement. Now we can initialize values for most data types. The...
View ArticleWhat are T-SQL Enhancements done in SQL Server 2008
What are T-SQL Enhancements done in SQL Server 2008 ? SQL Server 2008’s new statements, extend the T-SQL feature and functionality. Let’s understand What are T-SQL Enhancements done in SQL Server 2008...
View ArticleList of DMV and DMF availability across all SQL Server Versions
This is the extensive list of ALL Dynamic Management Views (DMV) and Dynamic Management Functions (DMF) which are available across Versions and Editions. This List Answers: DMV in SQL Server 2005 DMV...
View ArticleDatabase mirroring must be removed before you drop SQL Server database
Error Message TITLE: Microsoft SQL Server Management Studio —————————— Drop failed for Database ‘Test_SQLServer_Mirroring’. (Microsoft.SqlServer.Smo) For help, click:...
View ArticleHow to Setup Mirroring in SQL Server ?(Screen Shots)
What is Mirroring in SQL Server ? Database mirroring is an alternative high-availability solution to failover clustering in SQL Server. Database mirroring supports automatic failover, but does not...
View ArticleSQL Script to Get Free Space Information where Database Files are located
Recently I working on a server, where I need to get free drive space information on the Server. I can check this information either by My Computer (Windows Explorer) or by master..xp_fixeddrives, but...
View ArticleHow many Non Clustered Index can be created on a single table?
During my on of the training session, I used a term that we can multiple NON clustered Indexes, instantly one of the participants was very specific about number and said, we can have upto 249 non...
View ArticleCOLUMNSTORE Index
SQL Server’s indexes, clustered and nonclustered, are based on the B-tree. B-tree structure is great for finding data that match the condition on the basis of the primary key. They give us good results...
View Article