<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:copyright="http://blogs.law.harvard.edu/tech/rss" xmlns:image="http://purl.org/rss/1.0/modules/image/">
    <channel>
        <title>SQL</title>
        <link>http://geekswithblogs.net/whiletrue/category/9620.aspx</link>
        <description>SQL</description>
        <language>en-US</language>
        <copyright>Nouman Zakir</copyright>
        <managingEditor>nouman203@yahoo.com</managingEditor>
        <generator>Subtext Version 0.0.0.0</generator>
        <item>
            <title>Using SELECT statement to UPDATE records in SQL</title>
            <link>http://geekswithblogs.net/whiletrue/archive/2009/08/04/using-select-statement-to-update-records-in-sql.aspx</link>
            <description>&lt;font size="3"&gt;&lt;span style="font-family: Tahoma;"&gt;You can use SELECT statement to update records through UPDATE statement. &lt;/span&gt;&lt;br style="font-family: Tahoma;" /&gt;
&lt;span style="font-family: Tahoma;"&gt;In the SET Clause use the SELECT statement along with desired filters to &lt;/span&gt;&lt;br style="font-family: Tahoma;" /&gt;
&lt;span style="font-family: Tahoma;"&gt;update the records. &lt;/span&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;font size="3" style="font-weight: bold; color: rgb(0, 0, 0); background-color: rgb(192, 192, 192);"&gt;&lt;span style="font-family: Courier New;"&gt;UPDATE tblDestination &lt;br /&gt;
&lt;/span&gt;&lt;span style="font-family: Courier New;"&gt;SET tblDestination.col=value &lt;/span&gt;&lt;br style="font-family: Courier New;" /&gt;
&lt;span style="font-family: Courier New;"&gt;WHERE EXISTS ( &lt;/span&gt;&lt;br style="font-family: Courier New;" /&gt;
&lt;span style="font-family: Courier New;"&gt;SELECT col2.value &lt;/span&gt;&lt;br style="font-family: Courier New;" /&gt;
&lt;span style="font-family: Courier New;"&gt;FROM tblSource &lt;/span&gt;&lt;br style="font-family: Courier New;" /&gt;
&lt;span style="font-family: Courier New;"&gt;WHERE tblSource.join_col=tblDestination.join_col &lt;/span&gt;&lt;br style="font-family: Courier New;" /&gt;
&lt;span style="font-family: Courier New;"&gt;AND tblSource.constraint=value)&lt;/span&gt;&lt;/font&gt;&lt;p&gt;&lt;a href="http://www.pheedo.com/click.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=133897"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=133897" border="0"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;iframe src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;PageID=31016&amp;amp;SiteID=1" width=1 height=1 Marginwidth=0 Marginheight=0 Hspace=0 Vspace=0 Frameborder=0 Scrolling=No&gt;
&lt;script language='javascript1.1' src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Browser=NETSCAPE4&amp;amp;NoCache=True&amp;PageID=31016&amp;amp;SiteID=1"&gt;&lt;/script&gt;
&lt;noscript&gt;&lt;a href="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Click&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" target="_blank"&gt;
&lt;img src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" width="1" height="1" border="0"  alt=""&gt;&lt;/a&gt;
&lt;/noscript&gt;
&lt;/iframe&gt;
&lt;img src="http://geekswithblogs.net/whiletrue/aggbug/133897.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Nouman Zakir</dc:creator>
            <guid>http://geekswithblogs.net/whiletrue/archive/2009/08/04/using-select-statement-to-update-records-in-sql.aspx</guid>
            <pubDate>Tue, 04 Aug 2009 11:28:10 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/whiletrue/comments/133897.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/whiletrue/archive/2009/08/04/using-select-statement-to-update-records-in-sql.aspx#feedback</comments>
            <wfw:commentRss>http://geekswithblogs.net/whiletrue/comments/commentRss/133897.aspx</wfw:commentRss>
            <trackback:ping>http://geekswithblogs.net/whiletrue/services/trackbacks/133897.aspx</trackback:ping>
        </item>
        <item>
            <title>Using SELECT statement to INSERT records in SQL</title>
            <link>http://geekswithblogs.net/whiletrue/archive/2009/08/04/using-select-statement-to-insert-records-in-sql.aspx</link>
            <description>&lt;font size="4"&gt;&lt;font size="3"&gt;&lt;span style="font-family: Tahoma;"&gt;In INSERT statement, by replacing the &lt;/span&gt;&lt;span style="font-family: Tahoma;"&gt;VALUES clause with a SELECT statement &lt;br /&gt;
you can get a set of records for INSERT.&lt;br /&gt;
&lt;/span&gt;&lt;br style="font-family: Tahoma;" /&gt;
&lt;span style="font-family: Tahoma;"&gt;Suppose I have a table called table_A and I &lt;/span&gt;&lt;span style="font-family: Tahoma;"&gt;want to populate it with the ID, Name and&lt;br /&gt;
Address of table_B&lt;/span&gt;&lt;span style="font-family: Tahoma;"&gt;. The statement would look something like this:&lt;/span&gt;&lt;/font&gt;&lt;br style="font-family: Tahoma;" /&gt;
&lt;/font&gt;&lt;font size="3"&gt;&lt;br /&gt;
&lt;/font&gt;
&lt;div style="text-align: left;"&gt;&lt;font size="3"&gt;&lt;span style="font-family: Courier New; background-color: rgb(192, 192, 192); font-weight: bold;"&gt;INSERT table_A (col_id, col_name, col_address)&lt;/span&gt;&lt;br style="font-family: Courier New; background-color: rgb(192, 192, 192); font-weight: bold;" /&gt;
&lt;span style="font-family: Courier New; background-color: rgb(192, 192, 192); font-weight: bold;"&gt;SELECT col_id, col_name, col_address&lt;/span&gt;&lt;br style="font-family: Courier New; background-color: rgb(192, 192, 192); font-weight: bold;" /&gt;
&lt;span style="font-family: Courier New; background-color: rgb(192, 192, 192); font-weight: bold;"&gt;FROM table_B&lt;/span&gt;&lt;br style="font-family: Courier New; background-color: rgb(192, 192, 192); font-weight: bold;" /&gt;
&lt;span style="font-family: Courier New; background-color: rgb(192, 192, 192);"&gt;&lt;span style="font-weight: bold;"&gt;WHERE col_city = 'karachi'&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/span&gt;&lt;/font&gt; &lt;font size="3"&gt;&lt;span style="font-family: Tahoma;"&gt;This will take the records with col_city='karachi' and load them into the&lt;/span&gt;&lt;br style="font-family: Tahoma;" /&gt;
&lt;span style="font-family: Tahoma;"&gt;table table_A. I can use any type of SELECT statement here.&lt;/span&gt;&lt;br style="font-family: Tahoma;" /&gt;
&lt;span style="font-family: Tahoma;"&gt;It just has to return a record set that matches the columns in the&lt;/span&gt;&lt;br style="font-family: Tahoma;" /&gt;
&lt;span style="font-family: Tahoma;"&gt;INSERT statement. The number of columns and their data types must match&lt;/span&gt;&lt;br style="font-family: Tahoma;" /&gt;
&lt;span style="font-family: Tahoma;"&gt;(or be implicitly convertible). I can also execute a stored procedure&lt;/span&gt;&lt;br style="font-family: Tahoma;" /&gt;
&lt;span style="font-family: Tahoma;"&gt;that returns a record set using the EXEC command in place of the SELECT&lt;/span&gt;&lt;br style="font-family: Tahoma;" /&gt;
&lt;span style="font-family: Tahoma;"&gt;statement.&lt;/span&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;br /&gt;
&lt;/font&gt; &lt;/div&gt;&lt;p&gt;&lt;a href="http://www.pheedo.com/click.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=133896"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=133896" border="0"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;iframe src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;PageID=31016&amp;amp;SiteID=1" width=1 height=1 Marginwidth=0 Marginheight=0 Hspace=0 Vspace=0 Frameborder=0 Scrolling=No&gt;
&lt;script language='javascript1.1' src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Browser=NETSCAPE4&amp;amp;NoCache=True&amp;PageID=31016&amp;amp;SiteID=1"&gt;&lt;/script&gt;
&lt;noscript&gt;&lt;a href="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Click&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" target="_blank"&gt;
&lt;img src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" width="1" height="1" border="0"  alt=""&gt;&lt;/a&gt;
&lt;/noscript&gt;
&lt;/iframe&gt;
&lt;img src="http://geekswithblogs.net/whiletrue/aggbug/133896.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Nouman Zakir</dc:creator>
            <guid>http://geekswithblogs.net/whiletrue/archive/2009/08/04/using-select-statement-to-insert-records-in-sql.aspx</guid>
            <pubDate>Tue, 04 Aug 2009 09:57:24 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/whiletrue/comments/133896.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/whiletrue/archive/2009/08/04/using-select-statement-to-insert-records-in-sql.aspx#feedback</comments>
            <slash:comments>1</slash:comments>
            <wfw:commentRss>http://geekswithblogs.net/whiletrue/comments/commentRss/133896.aspx</wfw:commentRss>
            <trackback:ping>http://geekswithblogs.net/whiletrue/services/trackbacks/133896.aspx</trackback:ping>
        </item>
        <item>
            <title>Optional parameters in SQL Stored Procedures</title>
            <link>http://geekswithblogs.net/whiletrue/archive/2009/02/28/optional-parameters-in-sql-stored-procedures.aspx</link>
            <description>&lt;p style="font-family: Verdana;"&gt;&lt;font size="3"&gt;You can add optional parameters in stored procedures by setting a default value for each parameter that you want to make optional. The default value is typically NULL, but it's not necessary. &lt;/font&gt;&lt;/p&gt;
&lt;p style="font-family: Verdana;"&gt;&lt;font size="3"&gt;&lt;br /&gt;
&lt;span style="font-weight: bold; text-decoration: underline;"&gt;Example: &lt;/span&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p style="font-family: Courier New; color: rgb(0, 0, 0); background-color: rgb(192, 192, 192); font-weight: bold;"&gt;&lt;font size="3"&gt;CREATE PROCEDURE dbo.mySP&lt;br /&gt;
@firstParam VARCHAR(32) = NULL,&lt;br /&gt;
@secondParam INT = NULL&lt;br /&gt;
AS&lt;br /&gt;
&lt;br /&gt;
BEGIN&lt;br /&gt;
&lt;br /&gt;
SET NOCOUNT ON&lt;br /&gt;
SELECT *&lt;br /&gt;
FROM [TableName]&lt;br /&gt;
WHERE&lt;br /&gt;
Param1 = @firstParam&lt;br /&gt;
AND Param2 = @secondParam&lt;br /&gt;
&lt;br /&gt;
END&lt;br /&gt;
GO&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
EXEC dbo.&lt;/font&gt;&lt;font size="3"&gt;mySP &lt;/font&gt;&lt;font size="3"&gt;@&lt;/font&gt;&lt;font size="3"&gt;firstParam &lt;/font&gt;&lt;font size="3"&gt;='bar', @&lt;/font&gt;&lt;font size="3"&gt;secondParam &lt;/font&gt;&lt;font size="3"&gt;=4&lt;br /&gt;
EXEC dbo.&lt;/font&gt;&lt;font size="3"&gt;mySP &lt;/font&gt;&lt;font size="3"&gt;@&lt;/font&gt;&lt;font size="3"&gt;firstParam &lt;/font&gt;&lt;font size="3"&gt;='bar'&lt;br /&gt;
EXEC dbo.&lt;/font&gt;&lt;font size="3"&gt;mySP &lt;/font&gt;&lt;font size="3"&gt;@&lt;/font&gt;&lt;font size="3"&gt;secondParam &lt;/font&gt;&lt;font size="3"&gt;=4&lt;br /&gt;
EXEC dbo.&lt;/font&gt;&lt;font size="3"&gt;mySP &lt;/font&gt;&lt;font size="3"&gt;'bar',4&lt;br /&gt;
EXEC dbo.&lt;/font&gt;&lt;font size="3"&gt;mySP &lt;/font&gt;&lt;font size="3"&gt;'bar'&lt;br /&gt;
EXEC dbo.&lt;/font&gt;&lt;font size="3"&gt;mySP &lt;/font&gt;&lt;br /&gt;
&lt;font size="3"&gt;GO&lt;br /&gt;
&lt;br /&gt;
DROP PROCEDURE dbo.&lt;/font&gt;&lt;font size="3"&gt;mySP&lt;/font&gt;&lt;br /&gt;
&lt;font size="3"&gt;GO&lt;br /&gt;
&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://www.pheedo.com/click.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=129733"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=129733" border="0"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;iframe src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;PageID=31016&amp;amp;SiteID=1" width=1 height=1 Marginwidth=0 Marginheight=0 Hspace=0 Vspace=0 Frameborder=0 Scrolling=No&gt;
&lt;script language='javascript1.1' src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Browser=NETSCAPE4&amp;amp;NoCache=True&amp;PageID=31016&amp;amp;SiteID=1"&gt;&lt;/script&gt;
&lt;noscript&gt;&lt;a href="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Click&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" target="_blank"&gt;
&lt;img src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" width="1" height="1" border="0"  alt=""&gt;&lt;/a&gt;
&lt;/noscript&gt;
&lt;/iframe&gt;
&lt;img src="http://geekswithblogs.net/whiletrue/aggbug/129733.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Nouman Zakir</dc:creator>
            <guid>http://geekswithblogs.net/whiletrue/archive/2009/02/28/optional-parameters-in-sql-stored-procedures.aspx</guid>
            <pubDate>Sat, 28 Feb 2009 11:48:24 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/whiletrue/comments/129733.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/whiletrue/archive/2009/02/28/optional-parameters-in-sql-stored-procedures.aspx#feedback</comments>
            <wfw:commentRss>http://geekswithblogs.net/whiletrue/comments/commentRss/129733.aspx</wfw:commentRss>
            <trackback:ping>http://geekswithblogs.net/whiletrue/services/trackbacks/129733.aspx</trackback:ping>
        </item>
        <item>
            <title>Reset table identity (reseed) in SQL Server with DBCC RESEED</title>
            <link>http://geekswithblogs.net/whiletrue/archive/2009/02/11/reset-table-identity-reseed-in-sql-server-with-dbcc-reseed.aspx</link>
            <description>&lt;p style="font-family: Verdana;"&gt;&lt;font size="3" style="font-family: Verdana;"&gt;You may use DBCC CHECKIDENT to reseed (reset) the identity column of any table in SQL Server. &lt;/font&gt;&lt;/p&gt;
&lt;p style="font-family: Verdana; text-decoration: underline; font-weight: bold;"&gt;&lt;font size="3" style="font-family: Verdana;"&gt;Example:&lt;/font&gt;&lt;/p&gt;
&lt;p style="font-family: Verdana;"&gt;&lt;font size="3" style="font-family: Verdana;"&gt;A table has 10 rows with 10 as last identity. The next record will automatically genrate 11, to start the new identity use the follwing T SQL query in query analyzer.&lt;/font&gt;&lt;/p&gt;
&lt;p style="font-family: Courier New;"&gt;&lt;font size="3" style="font-family: Courier New;"&gt;DBCC CHECKIDENT (tableName, reseed, 15) &lt;/font&gt;&lt;/p&gt;
&lt;p style="font-family: Verdana;"&gt;&lt;font size="3" style="font-family: Verdana;"&gt;To set the seed to zero use the following T SQL query in query analyzer.&lt;/font&gt;&lt;/p&gt;
&lt;p style="font-family: Courier New;"&gt;&lt;font size="3" style="font-family: Courier New;"&gt;DBCC CHECKIDENT (tableName, reseed, 0) &lt;/font&gt;&lt;/p&gt;
&lt;p style="font-family: Verdana;"&gt;&lt;font size="3" style="font-family: Verdana;"&gt;Avoid using a value lower than the current value, doing this will violate the uniqueness contrant in case of new entries.&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://www.pheedo.com/click.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=129316"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=129316" border="0"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;iframe src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;PageID=31016&amp;amp;SiteID=1" width=1 height=1 Marginwidth=0 Marginheight=0 Hspace=0 Vspace=0 Frameborder=0 Scrolling=No&gt;
&lt;script language='javascript1.1' src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Browser=NETSCAPE4&amp;amp;NoCache=True&amp;PageID=31016&amp;amp;SiteID=1"&gt;&lt;/script&gt;
&lt;noscript&gt;&lt;a href="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Click&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" target="_blank"&gt;
&lt;img src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" width="1" height="1" border="0"  alt=""&gt;&lt;/a&gt;
&lt;/noscript&gt;
&lt;/iframe&gt;
&lt;img src="http://geekswithblogs.net/whiletrue/aggbug/129316.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Nouman Zakir</dc:creator>
            <guid>http://geekswithblogs.net/whiletrue/archive/2009/02/11/reset-table-identity-reseed-in-sql-server-with-dbcc-reseed.aspx</guid>
            <pubDate>Wed, 11 Feb 2009 09:59:34 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/whiletrue/comments/129316.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/whiletrue/archive/2009/02/11/reset-table-identity-reseed-in-sql-server-with-dbcc-reseed.aspx#feedback</comments>
            <slash:comments>3</slash:comments>
            <wfw:commentRss>http://geekswithblogs.net/whiletrue/comments/commentRss/129316.aspx</wfw:commentRss>
            <trackback:ping>http://geekswithblogs.net/whiletrue/services/trackbacks/129316.aspx</trackback:ping>
        </item>
        <item>
            <title>Find text in SQL stored procedures</title>
            <link>http://geekswithblogs.net/whiletrue/archive/2009/02/02/find-text-in-sql-stored-procedures.aspx</link>
            <description>&lt;p style="font-family: Verdana;"&gt;&lt;font size="3"&gt;Method to retrieve every text inside the stored procedures of a database&lt;br /&gt;
&lt;/font&gt;&lt;br /&gt;
&lt;/p&gt;
&lt;p style="font-family: Courier New; background-color: rgb(192, 192, 192); font-weight: bold;"&gt;&lt;font size="3"&gt;SELECT B.Name, *&lt;br /&gt;
FROM syscomments A INNER JOIN sysobjects B&lt;br /&gt;
ON A.id = B.id&lt;br /&gt;
WHERE A.text like '%tblNames%'&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://www.pheedo.com/click.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=129123"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=129123" border="0"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;iframe src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;PageID=31016&amp;amp;SiteID=1" width=1 height=1 Marginwidth=0 Marginheight=0 Hspace=0 Vspace=0 Frameborder=0 Scrolling=No&gt;
&lt;script language='javascript1.1' src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Browser=NETSCAPE4&amp;amp;NoCache=True&amp;PageID=31016&amp;amp;SiteID=1"&gt;&lt;/script&gt;
&lt;noscript&gt;&lt;a href="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Click&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" target="_blank"&gt;
&lt;img src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" width="1" height="1" border="0"  alt=""&gt;&lt;/a&gt;
&lt;/noscript&gt;
&lt;/iframe&gt;
&lt;img src="http://geekswithblogs.net/whiletrue/aggbug/129123.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Nouman Zakir</dc:creator>
            <guid>http://geekswithblogs.net/whiletrue/archive/2009/02/02/find-text-in-sql-stored-procedures.aspx</guid>
            <pubDate>Mon, 02 Feb 2009 06:43:08 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/whiletrue/comments/129123.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/whiletrue/archive/2009/02/02/find-text-in-sql-stored-procedures.aspx#feedback</comments>
            <slash:comments>2</slash:comments>
            <wfw:commentRss>http://geekswithblogs.net/whiletrue/comments/commentRss/129123.aspx</wfw:commentRss>
            <trackback:ping>http://geekswithblogs.net/whiletrue/services/trackbacks/129123.aspx</trackback:ping>
        </item>
    </channel>
</rss>