<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for SQL Server Planet</title>
	<atom:link href="http://sqlserverplanet.com/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://sqlserverplanet.com</link>
	<description>Tips and Articles on SQL Server</description>
	<lastBuildDate>Wed, 16 May 2012 18:08:18 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Insert Stored Procedure Results Into Table by Pathan</title>
		<link>http://sqlserverplanet.com/sql/insert-stored-procedure-results-into-table/comment-page-1#comment-1262</link>
		<dc:creator>Pathan</dc:creator>
		<pubDate>Wed, 16 May 2012 18:08:18 +0000</pubDate>
		<guid isPermaLink="false">http://sqlserverplanet.com/?p=258#comment-1262</guid>
		<description>Hi,
i have created following storedProc
How can i Execute that and how can i insert the values into table
ALTER proc insert_details(@UserId int ,@UserName varchar(50),@MobileNo varchar(50),@UserRole int)
AS
BEGIN
INSERT INTO Registation
(UserId,UserName,MobileNo,UserRole)
values(@UserId ,@UserName ,@MobileNo ,@UserRole )
RETURN 0
END

Thanks a lot in advance</description>
		<content:encoded><![CDATA[<p>Hi,<br />
i have created following storedProc<br />
How can i Execute that and how can i insert the values into table<br />
ALTER proc insert_details(@UserId int ,@UserName varchar(50),@MobileNo varchar(50),@UserRole int)<br />
AS<br />
BEGIN<br />
INSERT INTO Registation<br />
(UserId,UserName,MobileNo,UserRole)<br />
values(@UserId ,@UserName ,@MobileNo ,@UserRole )<br />
RETURN 0<br />
END</p>
<p>Thanks a lot in advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Fix &#8211; Timeout expired.  The timeout period elapsed prior to completion of the operation or the server is not responding. by vipin</title>
		<link>http://sqlserverplanet.com/troubleshooting/fix-timeout-expired-the-timeout-period-elapsed-prior-to-completion-of-the-operation-or-the-server-is-not-responding/comment-page-1#comment-1260</link>
		<dc:creator>vipin</dc:creator>
		<pubDate>Wed, 16 May 2012 05:31:01 +0000</pubDate>
		<guid isPermaLink="false">http://sqlserverplanet.com/?p=144#comment-1260</guid>
		<description>Timeout expired.  The timeout period elapsed prior to completion of the operation or the server is not responding.</description>
		<content:encoded><![CDATA[<p>Timeout expired.  The timeout period elapsed prior to completion of the operation or the server is not responding.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The Merge Statement by Narumon</title>
		<link>http://sqlserverplanet.com/sql-server-2008/the-merge-statement/comment-page-1#comment-1250</link>
		<dc:creator>Narumon</dc:creator>
		<pubDate>Tue, 15 May 2012 14:11:26 +0000</pubDate>
		<guid isPermaLink="false">http://sqlserverplanet.com/?p=700#comment-1250</guid>
		<description>I am new to  this.  Since I am coming from a Microsoft SQL Server eovnrinment, and to some other it may seem like the two versions should be very similar, and they are, to a certain degree, but they are also very different in some important and basic ways. Good read, thanks!</description>
		<content:encoded><![CDATA[<p>I am new to  this.  Since I am coming from a Microsoft SQL Server eovnrinment, and to some other it may seem like the two versions should be very similar, and they are, to a certain degree, but they are also very different in some important and basic ways. Good read, thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simulate ROW_NUMBER in SQL 2000 by Ayrton</title>
		<link>http://sqlserverplanet.com/sql-server-2000/simulate-row_number-in-sql-2000/comment-page-1#comment-1248</link>
		<dc:creator>Ayrton</dc:creator>
		<pubDate>Tue, 15 May 2012 13:26:11 +0000</pubDate>
		<guid isPermaLink="false">http://sqlserverplanet.com/?p=1354#comment-1248</guid>
		<description>SQL can execute quriees against a database, retrieve,update,insert data from a database and   empty refer to an empty result of no rows and NULL  refer to a table with one row holding a NULL value.</description>
		<content:encoded><![CDATA[<p>SQL can execute quriees against a database, retrieve,update,insert data from a database and   empty refer to an empty result of no rows and NULL  refer to a table with one row holding a NULL value.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Troubleshooting SQL Server Slowness by Vittoria</title>
		<link>http://sqlserverplanet.com/troubleshooting/sql-server-slowness/comment-page-1#comment-1236</link>
		<dc:creator>Vittoria</dc:creator>
		<pubDate>Tue, 15 May 2012 09:22:15 +0000</pubDate>
		<guid isPermaLink="false">http://sqlserverplanet.com/?p=301#comment-1236</guid>
		<description>There should not be any prloebms on Windows 7, 32- bit (just make sure to choose the 32-bit installation). As for VS 08, it installs SQL Server Express (I think 2005), so that is a minor issue. It means that when you go to install 2008 R2, you either have to use a different named instance, like SQLEXPRESSR2. Or you have to uninstall SQL Server after VS 08 installs and before you try to install SQL Server 2008 R2.Then you can install R2 with the SQLEXPRESS named instance.</description>
		<content:encoded><![CDATA[<p>There should not be any prloebms on Windows 7, 32- bit (just make sure to choose the 32-bit installation). As for VS 08, it installs SQL Server Express (I think 2005), so that is a minor issue. It means that when you go to install 2008 R2, you either have to use a different named instance, like SQLEXPRESSR2. Or you have to uninstall SQL Server after VS 08 installs and before you try to install SQL Server 2008 R2.Then you can install R2 with the SQLEXPRESS named instance.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

