<?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>Stored Procedure | Varinder Sandhu</title>
	<atom:link href="https://varindersandhu.in/tag/stored-procedure/feed/" rel="self" type="application/rss+xml" />
	<link>https://varindersandhu.in</link>
	<description>Keep it Simple and Smart</description>
	<lastBuildDate>Wed, 10 Jul 2013 16:38:54 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.3</generator>

<image>
	<url>https://varindersandhu.in/wp-content/uploads/2020/05/varindersandhu_favicon.ico</url>
	<title>Stored Procedure | Varinder Sandhu</title>
	<link>https://varindersandhu.in</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">22788835</site>	<item>
		<title>SQL Server 2008 &#8211; Get the List of Stored Procedures update/modify in last N number days</title>
		<link>https://varindersandhu.in/2012/04/20/sql-server-2008-get-the-list-of-stored-procedures-update-modify-in-last-n-number-days/</link>
		
		<dc:creator><![CDATA[Varinder Sandhu]]></dc:creator>
		<pubDate>Fri, 20 Apr 2012 09:16:08 +0000</pubDate>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL-Advanced]]></category>
		<category><![CDATA[SQL-Scripts]]></category>
		<category><![CDATA[SQL-Tips and Tricks]]></category>
		<category><![CDATA[Varinder Sandhu]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Stored Procedure]]></category>
		<guid isPermaLink="false">http://www.varindersandhu.in/?p=2347</guid>

					<description><![CDATA[<p>With the help of the given procedure one can get the list of Stored Procedures update or modify in last N number days. Script: -- Get the List of Stored Procedures update/modify in last N number days CREATE PROCEDURE GetListModifySP ( @days INT ) AS SELECT name AS SP_Name, modify_date</p>
<p>The post <a href="https://varindersandhu.in/2012/04/20/sql-server-2008-get-the-list-of-stored-procedures-update-modify-in-last-n-number-days/">SQL Server 2008 – Get the List of Stored Procedures update/modify in last N number days</a> first appeared on <a href="https://varindersandhu.in">Varinder Sandhu</a>.</p>]]></description>
		
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2347</post-id>	</item>
		<item>
		<title>SQL Server &#8211; Stored Procedure with Output Parameters</title>
		<link>https://varindersandhu.in/2011/11/17/sql-server-stored-procedure-with-output-parameters/</link>
					<comments>https://varindersandhu.in/2011/11/17/sql-server-stored-procedure-with-output-parameters/#comments</comments>
		
		<dc:creator><![CDATA[Varinder Sandhu]]></dc:creator>
		<pubDate>Thu, 17 Nov 2011 10:34:03 +0000</pubDate>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL-Advanced]]></category>
		<category><![CDATA[SQL-Stored Procedure]]></category>
		<category><![CDATA[SQL-Tips and Tricks]]></category>
		<category><![CDATA[Varinder Sandhu]]></category>
		<category><![CDATA[Output Parameter]]></category>
		<category><![CDATA[Stored Procedure]]></category>
		<guid isPermaLink="false">http://www.varindersandhu.in/?p=1976</guid>

					<description><![CDATA[<p>In SQL Server, there are two ways with we can pass parameters to procedures. INPut parameter OUTPut parameter INPut parameter These types of parameters are used to send values to stored procedures. OUTPut parameter These types of parameters are used to get values from stored procedures. This is similar to</p>
<p>The post <a href="https://varindersandhu.in/2011/11/17/sql-server-stored-procedure-with-output-parameters/">SQL Server – Stored Procedure with Output Parameters</a> first appeared on <a href="https://varindersandhu.in">Varinder Sandhu</a>.</p>]]></description>
		
					<wfw:commentRss>https://varindersandhu.in/2011/11/17/sql-server-stored-procedure-with-output-parameters/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1976</post-id>	</item>
		<item>
		<title>SQL Server &#8211; User Defined Functions vs. Stored Procedures</title>
		<link>https://varindersandhu.in/2011/06/04/sql-server-user-defined-functions-vs-stored-procedures/</link>
					<comments>https://varindersandhu.in/2011/06/04/sql-server-user-defined-functions-vs-stored-procedures/#comments</comments>
		
		<dc:creator><![CDATA[Varinder Sandhu]]></dc:creator>
		<pubDate>Sat, 04 Jun 2011 16:06:15 +0000</pubDate>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL-Functions(UDF)]]></category>
		<category><![CDATA[SQL-General]]></category>
		<category><![CDATA[SQL-Stored Procedure]]></category>
		<category><![CDATA[SQL-Tips and Tricks]]></category>
		<category><![CDATA[Varinder Sandhu]]></category>
		<category><![CDATA[Functions]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL statements]]></category>
		<category><![CDATA[Stored Procedure]]></category>
		<category><![CDATA[User Defined Functions]]></category>
		<guid isPermaLink="false">http://www.varindersandhu.in/?p=1151</guid>

					<description><![CDATA[<p>SQL Server user-defined functions and stored procedures have almost similar functionality. Both allow you to create a batch of SQL statements to execute on SQL server. Benefits: We can reuse the code from one program to another, this way we can increase the productivity. Centralize control, to make business logic changes in a single</p>
<p>The post <a href="https://varindersandhu.in/2011/06/04/sql-server-user-defined-functions-vs-stored-procedures/">SQL Server – User Defined Functions vs. Stored Procedures</a> first appeared on <a href="https://varindersandhu.in">Varinder Sandhu</a>.</p>]]></description>
		
					<wfw:commentRss>https://varindersandhu.in/2011/06/04/sql-server-user-defined-functions-vs-stored-procedures/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1151</post-id>	</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/

Page Caching using Disk: Enhanced 
Database Caching 18/127 queries in 0.044 seconds using Disk (Request-wide modification query)

Served from: varindersandhu.in @ 2025-10-20 16:31:52 by W3 Total Cache
-->