<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
  <channel>
    <title>DotNetKicks.com - Stories tagged with SQL</title>
    <description>the latest stories tagged with 'SQL' from DotNetKicks.com</description>
    <link>http://www.dotnetkicks.com/</link>
    <language>en-us</language>
    <copyright>Atweb Publishing Ltd.</copyright>
    <docs>http://backend.userland.com/rss</docs>
    <generator>DotNetKicks.com - .NET links, community driven</generator>
    <ttl>30</ttl>
    <item>
      <title>SQL Data Decimation by Date Range and Nth Record</title>
      <description>Data decimation (aka Down Sampling) of large SQL datasets allows application to quickly visualize trends in data over large historical periods greatly improving application performance. Combining a custom date range and a SQL Modulo operator, quickly and evenly display long periods of data. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.arroyocode.com%2fsql-data-decimation-by-date-range-and-nth-record"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.arroyocode.com%2fsql-data-decimation-by-date-range-and-nth-record" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/sql/SQL_Data_Decimation_by_Date_Range_and_Nth_Record</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/sql/SQL_Data_Decimation_by_Date_Range_and_Nth_Record</guid>
      <pubDate>Thu, 24 May 2012 15:02:28 GMT</pubDate>
    </item>
    <item>
      <title>Code !t: Choosing the cloud for your database</title>
      <description>You will find some tips and advices on how to choose your cloud provider for storing the database &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.etabakov.com%2f2012%2f05%2fchoosing-cloud-for-your-database.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.etabakov.com%2f2012%2f05%2fchoosing-cloud-for-your-database.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/database/Code_t_Choosing_the_cloud_for_your_database</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/database/Code_t_Choosing_the_cloud_for_your_database</guid>
      <pubDate>Mon, 14 May 2012 16:43:54 GMT</pubDate>
    </item>
    <item>
      <title>Fix for IntelliSense feature in SSMS 2008 R2 may stop working ...</title>
      <description>Today , i encountered a wiered thing in my SQL Server Management Studio 2008 R2 where the intellisense was somehow not working in SSMS 2008 R2  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.ginktage.com%2f2012%2f05%2ffix-for-intellisense-feature-in-sql-server-management-studio-2008-r2-may-stop-working-after-you-install-visual-studio-2010-sp1%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.ginktage.com%2f2012%2f05%2ffix-for-intellisense-feature-in-sql-server-management-studio-2008-r2-may-stop-working-after-you-install-visual-studio-2010-sp1%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/sql/Fix_for_IntelliSense_feature_in_SSMS_2008_R2_may_stop_working</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/sql/Fix_for_IntelliSense_feature_in_SSMS_2008_R2_may_stop_working</guid>
      <pubDate>Sun, 13 May 2012 11:43:15 GMT</pubDate>
    </item>
    <item>
      <title>On the road less traveled: a DBA Roadmap review</title>
      <description>If you are a SQL Server DBA with 2-3 years worth of experience or even a mid-level SQL pro looking to advance his career and thinking that he could use an advice or two, you owe it to yourself to purchase this seminar. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fmarlonribunal.com%2fon-the-road-less-traveled-a-dba-roadmap-review%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fmarlonribunal.com%2fon-the-road-less-traveled-a-dba-roadmap-review%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/sql/On_the_road_less_traveled_a_DBA_Roadmap_review</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/sql/On_the_road_less_traveled_a_DBA_Roadmap_review</guid>
      <pubDate>Thu, 03 May 2012 18:37:54 GMT</pubDate>
    </item>
    <item>
      <title>Lengh of LOB data to be replicated exceeds configured maximum 65536 </title>
      <description>Whenever we try to replicate data from a database that saves the images(filestream) in the database, and you have included those images in your replication, then you might get this error

Length of LOB data (583669) to be replicated exceeds configured maximum 65536

 Solution:

There are two solutions for this problem 

    using TSQL
        sp_configure 'max text repl size', '2147483647'
        GO
        RECONFIGURE 
    using SQL Server Manager Studio
        In Object Explorer, Right click on your server name and select properties 
        Click the Advanced node
        Under Miscellaneous option, change Max Text Replication Size to the desired value.
 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fsqltrends.blogspot.com%2f2012%2f05%2flengh-of-lob-data-to-be-replicated.html%23"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fsqltrends.blogspot.com%2f2012%2f05%2flengh-of-lob-data-to-be-replicated.html%23" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/sql/Lengh_of_LOB_data_to_be_replicated_exceeds_configured_maximum_65536</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/sql/Lengh_of_LOB_data_to_be_replicated_exceeds_configured_maximum_65536</guid>
      <pubDate>Thu, 03 May 2012 05:00:43 GMT</pubDate>
    </item>
    <item>
      <title>Who Are The Sysadmins In This SQL Server? </title>
      <description>When you're working on a sql server database, it is critical who has complete of your server. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fmarlonribunal.com%2fwho-are-the-sysadmins-in-this-sql-server"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fmarlonribunal.com%2fwho-are-the-sysadmins-in-this-sql-server" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/sql/Who_Are_The_Sysadmins_In_This_SQL_Server</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/sql/Who_Are_The_Sysadmins_In_This_SQL_Server</guid>
      <pubDate>Wed, 02 May 2012 18:02:40 GMT</pubDate>
    </item>
    <item>
      <title>Code !t: The most unappreciated feature in Sql Server 2008?</title>
      <description>There is a feature in Sql Server 2008, that from my point of view has been hugely neglected. This is the Change Data Capture feature. Its main purpose is to keep historical data for all changes that happen in a given database. Check this post and learn more ... &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.etabakov.com%2f2012%2f04%2fmost-unappreciated-feature-in-sql.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.etabakov.com%2f2012%2f04%2fmost-unappreciated-feature-in-sql.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/sql/Code_t_The_most_unappreciated_feature_in_Sql_Server_2008</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/sql/Code_t_The_most_unappreciated_feature_in_Sql_Server_2008</guid>
      <pubDate>Tue, 01 May 2012 20:15:43 GMT</pubDate>
    </item>
    <item>
      <title>SQL Query To Check Money Data Type and Convert to Decimal Dynamically</title>
      <description>How to convert one data type to another in sql server query dynamically. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2ftechbrij.com%2f948%2fsql-convert-money-data-type-decimal-dynamically"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2ftechbrij.com%2f948%2fsql-convert-money-data-type-decimal-dynamically" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/sql/SQL_Query_To_Check_Money_Data_Type_and_Convert_to_Decimal_Dynamically</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/sql/SQL_Query_To_Check_Money_Data_Type_and_Convert_to_Decimal_Dynamically</guid>
      <pubDate>Thu, 26 Apr 2012 16:50:11 GMT</pubDate>
    </item>
    <item>
      <title>Simple method to constrain stored procedures by a collection</title>
      <description>Passing a collection of ID's to filter a SQL query within a stored procedure is not natively supported. Consider this article which discusses methods for passing arrays into a stored procedure.

Constraining a stored procedure's query has a simple work around, however. Passing the ID collection as a comma deliminated string allows the query to use LIKE to constrain the results. Note that the preceding and trailing commas are necessary. An example demonstrates how to do this easily. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.charlesrcook.com%2farchive%2f2012%2f04%2f07%2fsimple-method-to-constrain-stored-procedures-by-a-collection.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.charlesrcook.com%2farchive%2f2012%2f04%2f07%2fsimple-method-to-constrain-stored-procedures-by-a-collection.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/sql/Simple_method_to_constrain_stored_procedures_by_a_collection</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/sql/Simple_method_to_constrain_stored_procedures_by_a_collection</guid>
      <pubDate>Wed, 25 Apr 2012 22:30:42 GMT</pubDate>
    </item>
    <item>
      <title>Iterating through all the SQL Server databases and tables.</title>
      <description>SQL Server (2005 and above) contains two undocumented stored procedures, viz. sp_MSforeachdb and sp_MSforeacheable which can be used to loop through all the databases and tables and execute a command. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2firohitable.com%2fpost%2f2012%2f04%2f25%2fIterating-through-all-the-SQL-Server-databases-and-tables-to-execute-any-command.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2firohitable.com%2fpost%2f2012%2f04%2f25%2fIterating-through-all-the-SQL-Server-databases-and-tables-to-execute-any-command.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/sql/Iterating_through_all_the_SQL_Server_databases_and_tables</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/sql/Iterating_through_all_the_SQL_Server_databases_and_tables</guid>
      <pubDate>Wed, 25 Apr 2012 13:03:51 GMT</pubDate>
    </item>
    <item>
      <title>String Matching in LINQ</title>
      <description>Performing simple string equality tests is often not enough when application user convenience is key. Often only a fragment of a string is known to the user, or many of them. Sometimes there is a need to search for a fragment in multiple columns.
Which options does OpenAccess and LINQ provide to perform string matching? Into which SQL is the LINQ expression translated? &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblogs.telerik.com%2fblogs%2fposts%2f12-04-17%2fstring-matching-in-linq.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblogs.telerik.com%2fblogs%2fposts%2f12-04-17%2fstring-matching-in-linq.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/linq/String_Matching_in_LINQ</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/linq/String_Matching_in_LINQ</guid>
      <pubDate>Tue, 24 Apr 2012 13:27:58 GMT</pubDate>
    </item>
    <item>
      <title>Column Store Indexes in SQL Server 2012 - An Insight.</title>
      <description>Learn how Column Store Indexes work and boost performance. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2firohitable.com%2fpost%2f2012%2f04%2f15%2fColumn-Store-Indexes-in-SQL-Server-2012-An-Insight.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2firohitable.com%2fpost%2f2012%2f04%2f15%2fColumn-Store-Indexes-in-SQL-Server-2012-An-Insight.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/sql/Column_Store_Indexes_in_SQL_Server_2012_An_Insight</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/sql/Column_Store_Indexes_in_SQL_Server_2012_An_Insight</guid>
      <pubDate>Mon, 16 Apr 2012 15:33:17 GMT</pubDate>
    </item>
    <item>
      <title>Understanding Sequences in SQL Server 2012 (Denali) - Part 1</title>
      <description>What are Sequences in SQL Server 2012? &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.irohitable.com%2fpost%2f2012%2f04%2f09%2fUnderstanding-Sequences-in-SQL-Server-2012-(Denali)-Part-1.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.irohitable.com%2fpost%2f2012%2f04%2f09%2fUnderstanding-Sequences-in-SQL-Server-2012-(Denali)-Part-1.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/sql/Understanding_Sequences_in_SQL_Server_2012_Denali_Part_1</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/sql/Understanding_Sequences_in_SQL_Server_2012_Denali_Part_1</guid>
      <pubDate>Thu, 12 Apr 2012 06:24:19 GMT</pubDate>
    </item>
    <item>
      <title>Sql Server 2008 Replication</title>
      <description>SQL Server 2008 Replication example &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2femrecirik.com%2fpost%2f2011%2f05%2f31%2fSqlServerReplication.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2femrecirik.com%2fpost%2f2011%2f05%2f31%2fSqlServerReplication.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/sql/Sql_Server_2008_Replication</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/sql/Sql_Server_2008_Replication</guid>
      <pubDate>Tue, 03 Apr 2012 12:46:33 GMT</pubDate>
    </item>
    <item>
      <title>Reset Identity Column Value In Sql Server</title>
      <description>f we delete All data from Sql Server table having Identity Column with Identity Seed as 1 and insert new data Identity column value doesn't get reset and it starts from last number.
 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.csharpaspnetarticles.com%2f2012%2f03%2freset-identity-column-value-sqlserver.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.csharpaspnetarticles.com%2f2012%2f03%2freset-identity-column-value-sqlserver.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/sql/Reset_Identity_Column_Value_In_Sql_Server</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/sql/Reset_Identity_Column_Value_In_Sql_Server</guid>
      <pubDate>Tue, 27 Mar 2012 13:36:03 GMT</pubDate>
    </item>
    <item>
      <title>T-SQL features in SQL Server 2012 </title>
      <description>This post discuss about new T-SQL features in SQL Server 2012. The features which I am going to discuss here are Window Functions. Windowing and additional analytic functions are very cool and they are replacing cursors in T-SQL. Cursors are still available for use but windowing functions give better performance over cursors.	 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.techbubbles.com%2fsql-server%2ft-sql-features-in-sql-server-2012%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.techbubbles.com%2fsql-server%2ft-sql-features-in-sql-server-2012%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/sql/T_SQL_features_in_SQL_Server_2012</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/sql/T_SQL_features_in_SQL_Server_2012</guid>
      <pubDate>Wed, 07 Mar 2012 00:00:30 GMT</pubDate>
    </item>
    <item>
      <title>Entity Framework (Code First): the easy way to run stored procedures</title>
      <description>This article describes how to run SPs without manually specifying such a boring stuff as parameters of SP. Extension methods can do this itself. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fcode-clarity.blogspot.com%2f2012%2f02%2fentity-framework-code-first-easy-way-to.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fcode-clarity.blogspot.com%2f2012%2f02%2fentity-framework-code-first-easy-way-to.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/sql/Entity_Framework_Code_First_the_easy_way_to_run_stored_procedures</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/sql/Entity_Framework_Code_First_the_easy_way_to_run_stored_procedures</guid>
      <pubDate>Tue, 21 Feb 2012 19:27:22 GMT</pubDate>
    </item>
    <item>
      <title>Entity framework and nhibernate too complex? Say hello to FluentData. </title>
      <description>Are you tired of fighting with overly complex ORMs such as Entity Framework and NHibernate? Are you tired of poorly generated SQL or having to change your business objects to work with your ORM? Do you miss the power and performance of ADO.NET and SQL, but not the manual tedious work? If so FluentData might be the framework for you. FluentData is a Micro ORM that makes it simple to select, insert, update and delete data in a database. It gives the developer the power of ADO.NET but with the convenience of an ORM. It has a simple to use fluent API that uses SQL - the best and most suitable language to query data, and SQL or fluent builders to insert, update and delete data. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2ffluentdata.codeplex.com%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2ffluentdata.codeplex.com%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/sql/Entity_framework_and_nhibernate_too_complex_Say_hello_to_FluentData</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/sql/Entity_framework_and_nhibernate_too_complex_Say_hello_to_FluentData</guid>
      <pubDate>Tue, 21 Feb 2012 20:27:51 GMT</pubDate>
    </item>
    <item>
      <title>SQL writers, bloggers are not citing their sources</title>
      <description>References? We don't need no stinking references!  Or do we? &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.texastoo.com%2fpost%2f2012%2f02%2f17%2fSQL-writers-bloggers-are-not-citing-their-sources.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.texastoo.com%2fpost%2f2012%2f02%2f17%2fSQL-writers-bloggers-are-not-citing-their-sources.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/sql/SQL_writers_bloggers_are_not_citing_their_sources</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/sql/SQL_writers_bloggers_are_not_citing_their_sources</guid>
      <pubDate>Fri, 17 Feb 2012 20:30:28 GMT</pubDate>
    </item>
    <item>
      <title>Making unit tests in SQL Server a first class citizen with Red Gate's </title>
      <description>One area of unit testing that's always been a little tricky is testing anything with a database dependency. In part, this is because those tests often end up being dependent on the data itself which, of course, can be highly volatile. But it's also philosophically challenged in that if a unit test is to assess a discrete unit of code on the application tier then it probably shouldn't have dependencies on the data tier.

This is where Red Gate's SQL Test comes in. It's entirely self-contained within SSMS and all it does is tests business logic in the database, just like those first class cousins in Visual Studio. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.troyhunt.com%2f2012%2f02%2fmaking-unit-tests-in-sql-server-first.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.troyhunt.com%2f2012%2f02%2fmaking-unit-tests-in-sql-server-first.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/sql/Making_unit_tests_in_SQL_Server_a_first_class_citizen_with_Red_Gate_s</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/sql/Making_unit_tests_in_SQL_Server_a_first_class_citizen_with_Red_Gate_s</guid>
      <pubDate>Mon, 13 Feb 2012 08:10:42 GMT</pubDate>
    </item>
    <item>
      <title>A SQL Server Leap Year Test Function</title>
      <description>Transact-SQL does not provide a standard function that allows developers to determine if a year is a leap year. This article describes two functions. One to calculate the number of days in a year and one that utilises the result to identify leap years. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.blackwasp.co.uk%2fSQLIsLeapYear.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.blackwasp.co.uk%2fSQLIsLeapYear.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/sql/A_SQL_Server_Leap_Year_Test_Function</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/sql/A_SQL_Server_Leap_Year_Test_Function</guid>
      <pubDate>Sun, 29 Jan 2012 22:55:31 GMT</pubDate>
    </item>
    <item>
      <title>SQL Server Virtualization Notes</title>
      <description>Virtualization of SQL Server these days are becoming more a reality and common practice. Usually if you mention SQL Server and Virtualization in one sentence people will look at you as if you are a mad man. With this post I would like to talk about a couple of notes you need to consider when you virtualize SQL Server. When using a hypervisor to consolidate your SQL Servers into a virtualization environment you need to think about the impact on CPU, Memory, Storage and Network performance and management. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fcecildt.blogspot.com%2f2012%2f01%2fsql-server-virtualization-notes.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fcecildt.blogspot.com%2f2012%2f01%2fsql-server-virtualization-notes.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/sql/SQL_Server_Virtualization_Notes</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/sql/SQL_Server_Virtualization_Notes</guid>
      <pubDate>Thu, 26 Jan 2012 16:22:54 GMT</pubDate>
    </item>
    <item>
      <title>Run Your Custom Script Quickly with SSMS Tools Pack</title>
      <description>You can run your script in object explorer of sql server management studio using SSMS tools pack &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2ftechbrij.com%2f852%2frun-custom-script-ssms-tools-pack-quickly"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2ftechbrij.com%2f852%2frun-custom-script-ssms-tools-pack-quickly" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/sql/Run_Your_Custom_Script_Quickly_with_SSMS_Tools_Pack</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/sql/Run_Your_Custom_Script_Quickly_with_SSMS_Tools_Pack</guid>
      <pubDate>Thu, 19 Jan 2012 16:59:27 GMT</pubDate>
    </item>
    <item>
      <title>NoSQL No More: Let's double down with MoreSQL</title>
      <description>For far too long now I have sat idly by as the NoSQL movement spread across our industry. One after another, these so-called "databases" with weird names have been attacking the sanctity of my beloved relational databases.  The time has come to stand up to the scourge of NoSQL. Today, I am calling on developers everywhere to join a new movement dedicated to bringing back the golden era of relational databases: MoreSQL. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2ftatiyants.com%2fnosql-no-more-lets-double-down-with-moresql%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2ftatiyants.com%2fnosql-no-more-lets-double-down-with-moresql%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/sql/NoSQL_No_More_Let_s_double_down_with_MoreSQL</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/sql/NoSQL_No_More_Let_s_double_down_with_MoreSQL</guid>
      <pubDate>Fri, 13 Jan 2012 15:11:44 GMT</pubDate>
    </item>
    <item>
      <title>Create Linked Server to connect to a SQL Server Part - II</title>
      <description>In this blog we shall learn two more ways of creating a Linked Server for a SQL Server destination. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2flearnsqlwithbru.com%2f2012%2f01%2f12%2fcreate-linked-server-to-connect-to-a-sql-server-part-ii%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2flearnsqlwithbru.com%2f2012%2f01%2f12%2fcreate-linked-server-to-connect-to-a-sql-server-part-ii%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/sql/Create_Linked_Server_to_connect_to_a_SQL_Server_Part_II</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/sql/Create_Linked_Server_to_connect_to_a_SQL_Server_Part_II</guid>
      <pubDate>Thu, 12 Jan 2012 15:10:14 GMT</pubDate>
    </item>
  </channel>
</rss>
