﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" version="2.0"><channel><title>SQLServerCentral.com Content tagged SQL Server 2005 - TSQL</title><link>http://www.sqlservercentral.com/</link><description>Content tagged SQL Server 2005 - TSQL posted on SQLServerCentral.com</description><language>en-us</language><ttl>360</ttl><managingEditor>sjones@sqlservercentral.com (Steve Jones)</managingEditor><item><title>The OUPUT Command</title><description>SQL Server 2005 has added many new T-SQL commands, one of which is the OUTPUT command. Longtime SQL Server author Dinesh Asanka brings us a short look at how you can use this command.
</description><guid>http://www.sqlservercentral.com/articles/SQL+Server+2005+-+TSQL/3041/</guid><pubDate>2007/07/09</pubDate><link>http://www.sqlservercentral.com/articles/SQL+Server+2005+-+TSQL/3041/</link></item><item><title>Recursive Queries in SQL:1999 and SQL Server 2005</title><description>How many of you have written resursive queries in SQL? Or any language since school for that matter? Not many people write recusrive queries because of the complexity, the difficulty to understand how they work, and the chance for heap overflows. However, SQL Server 2005 implements Common Table Expressions and recursion in a way that is much easier to code and incorporates some safeguards. New author SQL Server MVP Frederic Brouard has written a fantastic article looking at resursive queries.

</description><guid>http://www.sqlservercentral.com/articles/SQL+Server+2005+-+TSQL/recursivequeriesinsql1999andsqlserver2005/1846/</guid><pubDate>2006/09/15</pubDate><link>http://www.sqlservercentral.com/articles/SQL+Server+2005+-+TSQL/recursivequeriesinsql1999andsqlserver2005/1846/</link></item><item><title>Server Side Paging using SQL Server 2005</title><description>A common activity in applications is to page results or record sets from a database. This is usually done on the client using the client&amp;#39;s paging functionality or on the server through a variety of methods. In SQL Server 2000 those server side methods typically used dynamic SQL or nested TOP clauses and weren&amp;#39;t very efficient. Using Common Table Expressions in SQL Server 2005 we have a better way to page record sets on the server.</description><guid>http://www.sqlservercentral.com/redirect/articles/2816/</guid><pubDate>2008/01/17</pubDate><link>http://www.sqlservercentral.com/redirect/articles/2816/</link></item><item><title>Usages of CONTEXT_INFO</title><description>How many of you have ever used SET CONTEXT_INFO in your SQL Server applications? Chances are it is not something you have been exposed to, but new author Yousef Ekhtiari brings us an example of how this particular construct can be used in your application.

</description><guid>http://www.sqlservercentral.com/articles/SQL+Server+2005+-+TSQL/2765/</guid><pubDate>2007/12/18</pubDate><link>http://www.sqlservercentral.com/articles/SQL+Server+2005+-+TSQL/2765/</link></item><item><title>Partitioning - Part 2</title><description>Continuing on with a look at SQL Server 205 partitioning features, Andy Warren delves into archiving techniques.
</description><guid>http://www.sqlservercentral.com/articles/Miscellaneous/3242/</guid><pubDate>2007/10/08</pubDate><link>http://www.sqlservercentral.com/articles/Miscellaneous/3242/</link></item><item><title>Handling NULL values in SQL Server 2005</title><description>In the simplest terms, a NULL value represents an unknown value. It&amp;#39;s unknown in the sense that the value is: missing from the system, may not be applicable in the current situation, or might be added later. NULL values are different than any other value and are sometimes hard to compare and handle.</description><guid>http://www.sqlservercentral.com/redirect/articles/3237/</guid><pubDate>2007/09/20</pubDate><link>http://www.sqlservercentral.com/redirect/articles/3237/</link></item><item><title>T-SQL error handling with Try…Catch blocks</title><description>T-SQL Try…Catch block for SQL Server exception handling has new, improved functions to handle errors when executing T-SQL code in SQL Server 2005.</description><guid>http://www.sqlservercentral.com/redirect/articles/3114/</guid><pubDate>2007/08/01</pubDate><link>http://www.sqlservercentral.com/redirect/articles/3114/</link></item><item><title>Using BCP to export the contents of MAX datatypes to a file</title><description>Phil Factor presents a poetic stored procedure for storing any VARCHAR(MAX) to file.</description><guid>http://www.sqlservercentral.com/redirect/articles/3106/</guid><pubDate>2007/07/23</pubDate><link>http://www.sqlservercentral.com/redirect/articles/3106/</link></item><item><title>The OUPUT Command</title><description>SQL Server 2005 has added many new T-SQL commands, one of which is the OUTPUT command. Longtime SQL Server author Dinesh Asanka brings us a short look at how you can use this command.
</description><guid>http://www.sqlservercentral.com/articles/SQL+Server+2005+-+TSQL/3041/</guid><pubDate>2007/07/09</pubDate><link>http://www.sqlservercentral.com/articles/SQL+Server+2005+-+TSQL/3041/</link></item><item><title>In SQL Server 2005, when using the OUTPUT...</title><guid>http://www.sqlservercentral.com/questions/SQL+Server+2005+-+TSQL/61075/</guid><pubDate>2007/07/06</pubDate><link>http://www.sqlservercentral.com/questions/SQL+Server+2005+-+TSQL/61075/</link></item><item><title>Consider the following table:
&lt;BR/&gt;

&lt;BR/&gt;
CREATE TABLE n
&lt;BR/&gt;
(
&lt;BR/&gt;
    id INT...</title><guid>http://www.sqlservercentral.com/questions/SQL+Server+2005+-+TSQL/61067/</guid><pubDate>2007/06/28</pubDate><link>http://www.sqlservercentral.com/questions/SQL+Server+2005+-+TSQL/61067/</link></item><item><title>Using OVER() with Aggregate Functions</title><description>One of new features in SQL 2005 that I haven&amp;#39;t seen much talk about is that you can now add aggregate functions to any SELECT (even without a GROUP BY clause) by specifying an OVER() partition for each function. Unfortunately, it isn&amp;#39;t especially powerful, and you can&amp;#39;t do running totals with it, but it does help you make your code a little shorter and in many cases it might be just what you need.</description><guid>http://www.sqlservercentral.com/redirect/articles/3035/</guid><pubDate>2007/06/20</pubDate><link>http://www.sqlservercentral.com/redirect/articles/3035/</link></item><item><title>What does the ROLLBACK WORK statement do?</title><guid>http://www.sqlservercentral.com/questions/SQL+Server+2005+-+TSQL/61062/</guid><pubDate>2007/06/20</pubDate><link>http://www.sqlservercentral.com/questions/SQL+Server+2005+-+TSQL/61062/</link></item><item><title>From which types of statement can you get...</title><guid>http://www.sqlservercentral.com/questions/SQL+Server+2005+-+TSQL/61061/</guid><pubDate>2007/06/19</pubDate><link>http://www.sqlservercentral.com/questions/SQL+Server+2005+-+TSQL/61061/</link></item><item><title>Consider the following batch of T-SQL:
&lt;BR/&gt;

&lt;BR/&gt;
EXEC('SELECT CONVERT(int, ''abc'')')
&lt;BR/&gt;
PRINT...</title><guid>http://www.sqlservercentral.com/questions/SQL+Server+2005+-+TSQL/61049/</guid><pubDate>2007/06/05</pubDate><link>http://www.sqlservercentral.com/questions/SQL+Server+2005+-+TSQL/61049/</link></item><item><title>Consider the following simplified method, used to transfer...</title><guid>http://www.sqlservercentral.com/questions/SQL+Server+2005+-+TSQL/61047/</guid><pubDate>2007/05/29</pubDate><link>http://www.sqlservercentral.com/questions/SQL+Server+2005+-+TSQL/61047/</link></item><item><title>What does this return on SQL Server 2005?
&lt;BR/&gt;

&lt;BR/&gt;
select...</title><guid>http://www.sqlservercentral.com/questions/SQL+Server+2005+-+TSQL/61013/</guid><pubDate>2007/04/16</pubDate><link>http://www.sqlservercentral.com/questions/SQL+Server+2005+-+TSQL/61013/</link></item><item><title>The NEWSEQUENTIALID Function</title><description>The NEWSEQUENTIALID system function is an addition to SQL Server 2005. It seeks to bring together, what used to be, conflicting requirements in SQL Server 2000; namely identity-level insert performance and globally unique values.</description><guid>http://www.sqlservercentral.com/redirect/articles/2947/</guid><pubDate>2007/04/10</pubDate><link>http://www.sqlservercentral.com/redirect/articles/2947/</link></item><item><title>What does the NULLIF function do?</title><guid>http://www.sqlservercentral.com/questions/SQL+Server+2005+-+TSQL/60983/</guid><pubDate>2007/03/07</pubDate><link>http://www.sqlservercentral.com/questions/SQL+Server+2005+-+TSQL/60983/</link></item><item><title>Server Side Paging using SQL Server 2005</title><description>A common activity in applications is to page results or record sets from a database. This is usually done on the client using the client&amp;#39;s paging functionality or on the server through a variety of methods. In SQL Server 2000 those server side methods typically used dynamic SQL or nested TOP clauses and weren&amp;#39;t very efficient. Using Common Table Expressions in SQL Server 2005 we have a better way to page record sets on the server.</description><guid>http://www.sqlservercentral.com/redirect/articles/2816/</guid><pubDate>2008/01/17</pubDate><link>http://www.sqlservercentral.com/redirect/articles/2816/</link></item><item><title>Write PIVOT queries in SQL Server 2005</title><description>New to SQL Server 2005 is the PIVOT operator, which gives you the ability to rotate row level data into tabular data without the use of the CASE statement, as was necessary in previous versions of SQL Server.</description><guid>http://www.sqlservercentral.com/redirect/articles/2791/</guid><pubDate>2007/01/11</pubDate><link>http://www.sqlservercentral.com/redirect/articles/2791/</link></item><item><title>Usages of CONTEXT_INFO</title><description>How many of you have ever used SET CONTEXT_INFO in your SQL Server applications? Chances are it is not something you have been exposed to, but new author Yousef Ekhtiari brings us an example of how this particular construct can be used in your application.

</description><guid>http://www.sqlservercentral.com/articles/SQL+Server+2005+-+TSQL/2765/</guid><pubDate>2007/12/18</pubDate><link>http://www.sqlservercentral.com/articles/SQL+Server+2005+-+TSQL/2765/</link></item><item><title>Joining Tables Part 1</title><description>In this video for beginners you&amp;#39;ll begin to learn how to write queries that use more than one table using T-SQL. Kathi walks you through common tactics to efficiently pull out data from a normalized system. </description><guid>http://www.sqlservercentral.com/redirect/articles/2766/</guid><pubDate>2006/12/11</pubDate><link>http://www.sqlservercentral.com/redirect/articles/2766/</link></item><item><title>TOP in SQL Server 2005</title><description>There are so many new features in SQL Server 2005 that there&amp;#39;s one that can make a significant impact in solving many different types of problems. Andy Warren takes a look at one of the features that has been enhanced and is extremely useful, albeit quirky: TOP.
</description><guid>http://www.sqlservercentral.com/articles/SQL+Server+2005+-+TSQL/2612/</guid><pubDate>2006/10/05</pubDate><link>http://www.sqlservercentral.com/articles/SQL+Server+2005+-+TSQL/2612/</link></item><item><title>Invoke UDFs that accept tables with SQL Server 2005's APPLY operator</title><description>Tim Chapman discusses using table valued functions with the APPLY function.</description><guid>http://www.sqlservercentral.com/redirect/articles/2619/</guid><pubDate>2006/10/04</pubDate><link>http://www.sqlservercentral.com/redirect/articles/2619/</link></item><item><title>Recursive Queries in SQL:1999 and SQL Server 2005</title><description>How many of you have written resursive queries in SQL? Or any language since school for that matter? Not many people write recusrive queries because of the complexity, the difficulty to understand how they work, and the chance for heap overflows. However, SQL Server 2005 implements Common Table Expressions and recursion in a way that is much easier to code and incorporates some safeguards. New author SQL Server MVP Frederic Brouard has written a fantastic article looking at resursive queries.

</description><guid>http://www.sqlservercentral.com/articles/SQL+Server+2005+-+TSQL/recursivequeriesinsql1999andsqlserver2005/1846/</guid><pubDate>2006/09/15</pubDate><link>http://www.sqlservercentral.com/articles/SQL+Server+2005+-+TSQL/recursivequeriesinsql1999andsqlserver2005/1846/</link></item><item><title>Speak Like a T-SQL Developer</title><description>In this video by Kathi Kellenberger, she starts beginners interested in T-SQL programming the teminology and some of the basiics of T-SQL. She also covers the what the various editions of SQL Server mean and the tools that you will use.
</description><guid>http://www.sqlservercentral.com/redirect/articles/2591/</guid><pubDate>2006/09/12</pubDate><link>http://www.sqlservercentral.com/redirect/articles/2591/</link></item><item><title>SQL Server 2005 Common Table Expressions</title><description>A CTE is a &amp;#34;temporary result set&amp;#34; that exists only within the scope of a single SQL statement. It allows access to functionality within that single SQL statement that was previously only available through use of functions, temp tables, cursors, and so on.
</description><guid>http://www.sqlservercentral.com/redirect/articles/2570/</guid><pubDate>2006/09/07</pubDate><link>http://www.sqlservercentral.com/redirect/articles/2570/</link></item><item><title>What does the ERROR_PROCEDURE() function return?</title><guid>http://www.sqlservercentral.com/questions/SQL+Server+2005+-+TSQL/60825/</guid><pubDate>2006/07/26</pubDate><link>http://www.sqlservercentral.com/questions/SQL+Server+2005+-+TSQL/60825/</link></item><item><title>Exploring NewSequentialID() in SQL Server 2005</title><description>The benefits and drawbacks of GUIDs as primary keys are generally known. Despite the drawbacks, some people use them to fulfill specific business requirements (the IDs are unique across multiple servers).</description><guid>http://www.sqlservercentral.com/redirect/articles/2477/</guid><pubDate>2006/06/30</pubDate><link>http://www.sqlservercentral.com/redirect/articles/2477/</link></item></channel></rss>