<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>SQL Server Planet</title>
	<atom:link href="http://sqlserverplanet.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://sqlserverplanet.com</link>
	<description>Tips and Articles on SQL Server</description>
	<lastBuildDate>Sat, 13 Feb 2010 05:38:23 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>SQL Server Add Primary Key</title>
		<link>http://sqlserverplanet.com/sql/sql-server-add-primary-key/</link>
		<comments>http://sqlserverplanet.com/sql/sql-server-add-primary-key/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 05:38:23 +0000</pubDate>
		<dc:creator>Derek D.</dc:creator>
				<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://sqlserverplanet.com/?p=1205</guid>
		<description><![CDATA[Adding a primary key can be done either after a table is created, or at the same a table is created.  It is important to note, that by default a primary key is clustered.  This may or may not be the preferred method of creation.  For more information on clustered vs non [...]]]></description>
		<wfw:commentRss>http://sqlserverplanet.com/sql/sql-server-add-primary-key/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Server Select</title>
		<link>http://sqlserverplanet.com/sql/sql-server-select/</link>
		<comments>http://sqlserverplanet.com/sql/sql-server-select/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 01:09:25 +0000</pubDate>
		<dc:creator>Derek D.</dc:creator>
				<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://sqlserverplanet.com/?p=1199</guid>
		<description><![CDATA[The SQL Server Select statement is the first statement used when returning data.  It is the most used and most important statement in the T-SQL language.  The Select statement has many different clauses.  We will step through each clause further in the tutorial, however now, we will look at Select itself.
The following [...]]]></description>
		<wfw:commentRss>http://sqlserverplanet.com/sql/sql-server-select/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cannot insert explicit value for identity column in table &#8216;table&#8217; when IDENTITY_INSERT is set to OFF.</title>
		<link>http://sqlserverplanet.com/sql-server/cannot-insert-explicit-value-for-identity-column-in-table-table-when-identity_insert-is-set-to-off/</link>
		<comments>http://sqlserverplanet.com/sql-server/cannot-insert-explicit-value-for-identity-column-in-table-table-when-identity_insert-is-set-to-off/#comments</comments>
		<pubDate>Sun, 10 Jan 2010 18:30:39 +0000</pubDate>
		<dc:creator>Derek D.</dc:creator>
				<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://sqlserverplanet.com/?p=1194</guid>
		<description><![CDATA[This error occurs when trying to insert into a column containing an identity.  An Identity column is not able to be  inserted into without the use of a special command mentioned below.  Identity columns are columns that automatically increment when a value is inserted into a row.  They are commonly used [...]]]></description>
		<wfw:commentRss>http://sqlserverplanet.com/sql-server/cannot-insert-explicit-value-for-identity-column-in-table-table-when-identity_insert-is-set-to-off/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Server Kill</title>
		<link>http://sqlserverplanet.com/dba/sql-server-kill/</link>
		<comments>http://sqlserverplanet.com/dba/sql-server-kill/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 07:31:56 +0000</pubDate>
		<dc:creator>Derek D.</dc:creator>
				<category><![CDATA[DBA]]></category>

		<guid isPermaLink="false">http://sqlserverplanet.com/?p=1187</guid>
		<description><![CDATA[The kill command is used against a SPID. (Server Process ID).  This command is typically used because something is misbehaving.  In order to use the Kill command, simply type the word &#8220;kill&#8221; followed by a space and then the number of the Server Process ID to kill.

-- Kill Server process ID 98
kill 98

The [...]]]></description>
		<wfw:commentRss>http://sqlserverplanet.com/dba/sql-server-kill/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best SQL Server Pagination Method</title>
		<link>http://sqlserverplanet.com/sql-server/best-sql-server-pagination-method/</link>
		<comments>http://sqlserverplanet.com/sql-server/best-sql-server-pagination-method/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 06:28:53 +0000</pubDate>
		<dc:creator>Derek D.</dc:creator>
				<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://sqlserverplanet.com/?p=1182</guid>
		<description><![CDATA[The best pagination method is actually mind-bogglingly simple.  Aren&#8217;t all things like this?   
It involves using (the mighty powerful) ROWCOUNT statement &#8212; twice.
Anyways, the code:

CREATE PROCEDURE [dbo].[spUsersPaged]
(
    @RowBegin int,
    @MaxRows int
)
AS
BEGIN

	DECLARE @StartID int	

	SET ROWCOUNT @RowBegin
	SELECT @StartID = UserID
	FROM dbo.Users u
	ORDER BY UserID

	-- Set maximum number of [...]]]></description>
		<wfw:commentRss>http://sqlserverplanet.com/sql-server/best-sql-server-pagination-method/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.531 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2010-03-10 19:13:32 -->
<!-- Compression = gzip -->