<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: SQL SERVER &#8211; Find Stored Procedure Related to Table in Database &#8211; Search in All Stored Procedure</title>
	<atom:link href="http://blog.sqlauthority.com/2006/12/10/sql-server-find-stored-procedure-related-to-table-in-database-search-in-all-stored-procedure/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2006/12/10/sql-server-find-stored-procedure-related-to-table-in-database-search-in-all-stored-procedure/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Thu, 09 Feb 2012 19:36:10 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: vikash</title>
		<link>http://blog.sqlauthority.com/2006/12/10/sql-server-find-stored-procedure-related-to-table-in-database-search-in-all-stored-procedure/#comment-235106</link>
		<dc:creator><![CDATA[vikash]]></dc:creator>
		<pubDate>Wed, 11 Jan 2012 05:41:20 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/2006/12/10/find-stored-procedure-related-to-table-in-database/#comment-235106</guid>
		<description><![CDATA[thanks, very good solution .]]></description>
		<content:encoded><![CDATA[<p>thanks, very good solution .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Neeraj</title>
		<link>http://blog.sqlauthority.com/2006/12/10/sql-server-find-stored-procedure-related-to-table-in-database-search-in-all-stored-procedure/#comment-232609</link>
		<dc:creator><![CDATA[Neeraj]]></dc:creator>
		<pubDate>Fri, 06 Jan 2012 21:36:21 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/2006/12/10/find-stored-procedure-related-to-table-in-database/#comment-232609</guid>
		<description><![CDATA[Hello, 

I am looking for the following information, can some one help.

Looking for help, I am looking for SQL script which will provide me the 
•	store procedure name
•	Schedule of this procedure
•	Last Run time
•	Run by
•	Table Name/Database against that procedure is running.]]></description>
		<content:encoded><![CDATA[<p>Hello, </p>
<p>I am looking for the following information, can some one help.</p>
<p>Looking for help, I am looking for SQL script which will provide me the<br />
•	store procedure name<br />
•	Schedule of this procedure<br />
•	Last Run time<br />
•	Run by<br />
•	Table Name/Database against that procedure is running.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jens Johanneson</title>
		<link>http://blog.sqlauthority.com/2006/12/10/sql-server-find-stored-procedure-related-to-table-in-database-search-in-all-stored-procedure/#comment-229907</link>
		<dc:creator><![CDATA[Jens Johanneson]]></dc:creator>
		<pubDate>Mon, 02 Jan 2012 07:43:30 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/2006/12/10/find-stored-procedure-related-to-table-in-database/#comment-229907</guid>
		<description><![CDATA[This is better

use msdb

DECLARE @search_string VARCHAR(255)
SET @search_string = &#039;%belagg%&#039;

SELECT sj.enabled AS jobEnabled, 
		command, step_id AS jobStep, step_name, 
		sj.name AS jobName, sj.description AS jobDescr, 
		subsystem, database_name, 
		last_run_date, last_run_time, 
		sjs.job_id, step_uid
FROM sysjobsteps sjs WITH (NOLOCK)
INNER JOIN sysjobs sj ON sj.job_id = sjs.job_id 
WHERE command like @search_string]]></description>
		<content:encoded><![CDATA[<p>This is better</p>
<p>use msdb</p>
<p>DECLARE @search_string VARCHAR(255)<br />
SET @search_string = &#8216;%belagg%&#8217;</p>
<p>SELECT sj.enabled AS jobEnabled,<br />
		command, step_id AS jobStep, step_name,<br />
		sj.name AS jobName, sj.description AS jobDescr,<br />
		subsystem, database_name,<br />
		last_run_date, last_run_time,<br />
		sjs.job_id, step_uid<br />
FROM sysjobsteps sjs WITH (NOLOCK)<br />
INNER JOIN sysjobs sj ON sj.job_id = sjs.job_id<br />
WHERE command like @search_string</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jens Johanneson</title>
		<link>http://blog.sqlauthority.com/2006/12/10/sql-server-find-stored-procedure-related-to-table-in-database-search-in-all-stored-procedure/#comment-229901</link>
		<dc:creator><![CDATA[Jens Johanneson]]></dc:creator>
		<pubDate>Mon, 02 Jan 2012 07:32:16 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/2006/12/10/find-stored-procedure-related-to-table-in-database/#comment-229901</guid>
		<description><![CDATA[In addition to my first post:

It is also nice to be able to search occurance in SQL Agent Jobs

USE msdb

SELECT command, subsystem, database_name, last_run_date, last_run_time, step_name, step_id, job_id, step_uid
FROM sysjobsteps WITH (NOLOCK)
WHERE command like @search_string]]></description>
		<content:encoded><![CDATA[<p>In addition to my first post:</p>
<p>It is also nice to be able to search occurance in SQL Agent Jobs</p>
<p>USE msdb</p>
<p>SELECT command, subsystem, database_name, last_run_date, last_run_time, step_name, step_id, job_id, step_uid<br />
FROM sysjobsteps WITH (NOLOCK)<br />
WHERE command like @search_string</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: madhivanan</title>
		<link>http://blog.sqlauthority.com/2006/12/10/sql-server-find-stored-procedure-related-to-table-in-database-search-in-all-stored-procedure/#comment-218506</link>
		<dc:creator><![CDATA[madhivanan]]></dc:creator>
		<pubDate>Thu, 15 Dec 2011 14:18:47 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/2006/12/10/find-stored-procedure-related-to-table-in-database/#comment-218506</guid>
		<description><![CDATA[Try this

Exec sp_depends trigger_name]]></description>
		<content:encoded><![CDATA[<p>Try this</p>
<p>Exec sp_depends trigger_name</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: boy</title>
		<link>http://blog.sqlauthority.com/2006/12/10/sql-server-find-stored-procedure-related-to-table-in-database-search-in-all-stored-procedure/#comment-218260</link>
		<dc:creator><![CDATA[boy]]></dc:creator>
		<pubDate>Thu, 15 Dec 2011 06:20:25 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/2006/12/10/find-stored-procedure-related-to-table-in-database/#comment-218260</guid>
		<description><![CDATA[thanks!]]></description>
		<content:encoded><![CDATA[<p>thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chand</title>
		<link>http://blog.sqlauthority.com/2006/12/10/sql-server-find-stored-procedure-related-to-table-in-database-search-in-all-stored-procedure/#comment-214408</link>
		<dc:creator><![CDATA[chand]]></dc:creator>
		<pubDate>Sat, 10 Dec 2011 04:59:59 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/2006/12/10/find-stored-procedure-related-to-table-in-database/#comment-214408</guid>
		<description><![CDATA[Hello

Is there a way to get a list of which stored procedures are called by triggers in the database?]]></description>
		<content:encoded><![CDATA[<p>Hello</p>
<p>Is there a way to get a list of which stored procedures are called by triggers in the database?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jens Johanneson</title>
		<link>http://blog.sqlauthority.com/2006/12/10/sql-server-find-stored-procedure-related-to-table-in-database-search-in-all-stored-procedure/#comment-208115</link>
		<dc:creator><![CDATA[Jens Johanneson]]></dc:creator>
		<pubDate>Wed, 30 Nov 2011 17:53:28 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/2006/12/10/find-stored-procedure-related-to-table-in-database/#comment-208115</guid>
		<description><![CDATA[A note of caution:
This WON&#039;T find occurrances in encrypted objects. Nearly got myself into troubles there...

Here is how you check if you have any encrypted objects in your db:

SELECT DISTINCT(c.id), name, type
FROM syscomments c 
INNER JOIN sysobjects o ON o.id=c.id
WHERE c.encrypted = 1]]></description>
		<content:encoded><![CDATA[<p>A note of caution:<br />
This WON&#8217;T find occurrances in encrypted objects. Nearly got myself into troubles there&#8230;</p>
<p>Here is how you check if you have any encrypted objects in your db:</p>
<p>SELECT DISTINCT(c.id), name, type<br />
FROM syscomments c<br />
INNER JOIN sysobjects o ON o.id=c.id<br />
WHERE c.encrypted = 1</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Deepa</title>
		<link>http://blog.sqlauthority.com/2006/12/10/sql-server-find-stored-procedure-related-to-table-in-database-search-in-all-stored-procedure/#comment-193848</link>
		<dc:creator><![CDATA[Deepa]]></dc:creator>
		<pubDate>Sat, 12 Nov 2011 11:55:55 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/2006/12/10/find-stored-procedure-related-to-table-in-database/#comment-193848</guid>
		<description><![CDATA[Wonderful.

Thanks
Deepa]]></description>
		<content:encoded><![CDATA[<p>Wonderful.</p>
<p>Thanks<br />
Deepa</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bhavika</title>
		<link>http://blog.sqlauthority.com/2006/12/10/sql-server-find-stored-procedure-related-to-table-in-database-search-in-all-stored-procedure/#comment-177731</link>
		<dc:creator><![CDATA[Bhavika]]></dc:creator>
		<pubDate>Wed, 12 Oct 2011 00:30:31 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/2006/12/10/find-stored-procedure-related-to-table-in-database/#comment-177731</guid>
		<description><![CDATA[Thank you so much, you really saved my time]]></description>
		<content:encoded><![CDATA[<p>Thank you so much, you really saved my time</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dattatraya Kale</title>
		<link>http://blog.sqlauthority.com/2006/12/10/sql-server-find-stored-procedure-related-to-table-in-database-search-in-all-stored-procedure/#comment-177222</link>
		<dc:creator><![CDATA[Dattatraya Kale]]></dc:creator>
		<pubDate>Mon, 10 Oct 2011 17:42:28 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/2006/12/10/find-stored-procedure-related-to-table-in-database/#comment-177222</guid>
		<description><![CDATA[----Option 2
SELECT DISTINCT o.name, o.xtype
FROM syscomments c
INNER JOIN sysobjects o ON c.id=o.id
WHERE c.TEXT LIKE &#039;%tablename%&#039;


will return all database objects which contains text &#039;tablename&#039; that means if user adds comment which has the word &#039;tablename&#039; but not depend upon the table &#039;tablename&#039; will be returned which is not desired result, isn&#039;t it?.]]></description>
		<content:encoded><![CDATA[<p>&#8212;-Option 2<br />
SELECT DISTINCT o.name, o.xtype<br />
FROM syscomments c<br />
INNER JOIN sysobjects o ON c.id=o.id<br />
WHERE c.TEXT LIKE &#8216;%tablename%&#8217;</p>
<p>will return all database objects which contains text &#8216;tablename&#8217; that means if user adds comment which has the word &#8216;tablename&#8217; but not depend upon the table &#8216;tablename&#8217; will be returned which is not desired result, isn&#8217;t it?.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Ramos</title>
		<link>http://blog.sqlauthority.com/2006/12/10/sql-server-find-stored-procedure-related-to-table-in-database-search-in-all-stored-procedure/#comment-175618</link>
		<dc:creator><![CDATA[Peter Ramos]]></dc:creator>
		<pubDate>Thu, 06 Oct 2011 08:25:19 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/2006/12/10/find-stored-procedure-related-to-table-in-database/#comment-175618</guid>
		<description><![CDATA[Thanks Pinal for your post, this help me a lot.]]></description>
		<content:encoded><![CDATA[<p>Thanks Pinal for your post, this help me a lot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gautam</title>
		<link>http://blog.sqlauthority.com/2006/12/10/sql-server-find-stored-procedure-related-to-table-in-database-search-in-all-stored-procedure/#comment-151279</link>
		<dc:creator><![CDATA[gautam]]></dc:creator>
		<pubDate>Thu, 28 Jul 2011 10:09:09 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/2006/12/10/find-stored-procedure-related-to-table-in-database/#comment-151279</guid>
		<description><![CDATA[how to get result of stored procedure into a table]]></description>
		<content:encoded><![CDATA[<p>how to get result of stored procedure into a table</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: raj</title>
		<link>http://blog.sqlauthority.com/2006/12/10/sql-server-find-stored-procedure-related-to-table-in-database-search-in-all-stored-procedure/#comment-147922</link>
		<dc:creator><![CDATA[raj]]></dc:creator>
		<pubDate>Wed, 13 Jul 2011 07:15:37 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/2006/12/10/find-stored-procedure-related-to-table-in-database/#comment-147922</guid>
		<description><![CDATA[Hi Pinal 
there is a way that i can get all the name of SP ,View  that is execute into other Sp.]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal<br />
there is a way that i can get all the name of SP ,View  that is execute into other Sp.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: madhivanan</title>
		<link>http://blog.sqlauthority.com/2006/12/10/sql-server-find-stored-procedure-related-to-table-in-database-search-in-all-stored-procedure/#comment-147376</link>
		<dc:creator><![CDATA[madhivanan]]></dc:creator>
		<pubDate>Mon, 11 Jul 2011 08:21:52 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/2006/12/10/find-stored-procedure-related-to-table-in-database/#comment-147376</guid>
		<description><![CDATA[Yes use like below

SET @sql = ‘SELECT DISTINCT o.name, o.xtype FROM syscomments c INNER JOIN sysobjects o ON c.id = o.id WHERE c.TEXT LIKE “%&#039;+@tableName+&#039;%”‘]]></description>
		<content:encoded><![CDATA[<p>Yes use like below</p>
<p>SET @sql = ‘SELECT DISTINCT o.name, o.xtype FROM syscomments c INNER JOIN sysobjects o ON c.id = o.id WHERE c.TEXT LIKE “%&#8217;+@tableName+&#8217;%”‘</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: anjali</title>
		<link>http://blog.sqlauthority.com/2006/12/10/sql-server-find-stored-procedure-related-to-table-in-database-search-in-all-stored-procedure/#comment-146961</link>
		<dc:creator><![CDATA[anjali]]></dc:creator>
		<pubDate>Fri, 08 Jul 2011 18:46:13 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/2006/12/10/find-stored-procedure-related-to-table-in-database/#comment-146961</guid>
		<description><![CDATA[Is it possible to use this query in a variable and then EXEC that variable like the following? 

DECLARE @tableName NVARCHAR (800)
DECLARE @dbName NVARCHAR(800)
DECLARE @sql NVARCHAR(800)
SET @dbName = &#039;TempDB&#039;
SET @tableName = &#039;Table1&#039;
SET @sql = &#039;SELECT DISTINCT o.name, o.xtype FROM syscomments c INNER JOIN sysobjects o ON c.id = o.id WHERE c.TEXT LIKE &quot;%@tableName%&quot;&#039;
EXEC (@sql)]]></description>
		<content:encoded><![CDATA[<p>Is it possible to use this query in a variable and then EXEC that variable like the following? </p>
<p>DECLARE @tableName NVARCHAR (800)<br />
DECLARE @dbName NVARCHAR(800)<br />
DECLARE @sql NVARCHAR(800)<br />
SET @dbName = &#8216;TempDB&#8217;<br />
SET @tableName = &#8216;Table1&#8242;<br />
SET @sql = &#8216;SELECT DISTINCT o.name, o.xtype FROM syscomments c INNER JOIN sysobjects o ON c.id = o.id WHERE c.TEXT LIKE &#8220;%@tableName%&#8221;&#8216;<br />
EXEC (@sql)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Akilan</title>
		<link>http://blog.sqlauthority.com/2006/12/10/sql-server-find-stored-procedure-related-to-table-in-database-search-in-all-stored-procedure/#comment-146393</link>
		<dc:creator><![CDATA[Akilan]]></dc:creator>
		<pubDate>Wed, 06 Jul 2011 12:55:15 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/2006/12/10/find-stored-procedure-related-to-table-in-database/#comment-146393</guid>
		<description><![CDATA[Thanks a lot ,]]></description>
		<content:encoded><![CDATA[<p>Thanks a lot ,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: saritha</title>
		<link>http://blog.sqlauthority.com/2006/12/10/sql-server-find-stored-procedure-related-to-table-in-database-search-in-all-stored-procedure/#comment-136634</link>
		<dc:creator><![CDATA[saritha]]></dc:creator>
		<pubDate>Wed, 25 May 2011 17:52:53 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/2006/12/10/find-stored-procedure-related-to-table-in-database/#comment-136634</guid>
		<description><![CDATA[You rock man. I always get a great solution from you.]]></description>
		<content:encoded><![CDATA[<p>You rock man. I always get a great solution from you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shivlila</title>
		<link>http://blog.sqlauthority.com/2006/12/10/sql-server-find-stored-procedure-related-to-table-in-database-search-in-all-stored-procedure/#comment-133037</link>
		<dc:creator><![CDATA[shivlila]]></dc:creator>
		<pubDate>Thu, 05 May 2011 09:46:15 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/2006/12/10/find-stored-procedure-related-to-table-in-database/#comment-133037</guid>
		<description><![CDATA[Hi Pinal, 
You are really very good DBA.
Very nice blog.]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal,<br />
You are really very good DBA.<br />
Very nice blog.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh</title>
		<link>http://blog.sqlauthority.com/2006/12/10/sql-server-find-stored-procedure-related-to-table-in-database-search-in-all-stored-procedure/#comment-129987</link>
		<dc:creator><![CDATA[Josh]]></dc:creator>
		<pubDate>Tue, 19 Apr 2011 15:28:59 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/2006/12/10/find-stored-procedure-related-to-table-in-database/#comment-129987</guid>
		<description><![CDATA[Wow, this is something I&#039;d always thought would be extremely useful at times, but I hadn&#039;t had any idea that there was a query to get this information immediately.  Works great.  Thanks!]]></description>
		<content:encoded><![CDATA[<p>Wow, this is something I&#8217;d always thought would be extremely useful at times, but I hadn&#8217;t had any idea that there was a query to get this information immediately.  Works great.  Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shoab</title>
		<link>http://blog.sqlauthority.com/2006/12/10/sql-server-find-stored-procedure-related-to-table-in-database-search-in-all-stored-procedure/#comment-125767</link>
		<dc:creator><![CDATA[shoab]]></dc:creator>
		<pubDate>Thu, 31 Mar 2011 10:03:32 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/2006/12/10/find-stored-procedure-related-to-table-in-database/#comment-125767</guid>
		<description><![CDATA[good one]]></description>
		<content:encoded><![CDATA[<p>good one</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: madhivanan</title>
		<link>http://blog.sqlauthority.com/2006/12/10/sql-server-find-stored-procedure-related-to-table-in-database-search-in-all-stored-procedure/#comment-118636</link>
		<dc:creator><![CDATA[madhivanan]]></dc:creator>
		<pubDate>Tue, 15 Feb 2011 15:23:18 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/2006/12/10/find-stored-procedure-related-to-table-in-database/#comment-118636</guid>
		<description><![CDATA[Start with this
http://beyondrelational.com/blogs/madhivanan/archive/2007/11/20/random-password-generator.aspx]]></description>
		<content:encoded><![CDATA[<p>Start with this<br />
<a href="http://beyondrelational.com/blogs/madhivanan/archive/2007/11/20/random-password-generator.aspx" rel="nofollow">http://beyondrelational.com/blogs/madhivanan/archive/2007/11/20/random-password-generator.aspx</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ken</title>
		<link>http://blog.sqlauthority.com/2006/12/10/sql-server-find-stored-procedure-related-to-table-in-database-search-in-all-stored-procedure/#comment-118097</link>
		<dc:creator><![CDATA[ken]]></dc:creator>
		<pubDate>Sat, 12 Feb 2011 02:38:38 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/2006/12/10/find-stored-procedure-related-to-table-in-database/#comment-118097</guid>
		<description><![CDATA[1. create a function that generates random alphanumeric code e.g &#039;NFG6Y5&#039;. the function should accept a number 
specifying size of characters in the code.

2. create a table to store the codes and the code column should be unique.

3. create a stored proc that uses the function created to get codes and inserts them in the table created in the 
above step. The stored proc should accept number of codes to generate, and size of each code.

using aspx c#,

1. create an application that allows users to log in, and using previous stored proc, allows user to view codes and 
generate more.]]></description>
		<content:encoded><![CDATA[<p>1. create a function that generates random alphanumeric code e.g &#8216;NFG6Y5&#8242;. the function should accept a number<br />
specifying size of characters in the code.</p>
<p>2. create a table to store the codes and the code column should be unique.</p>
<p>3. create a stored proc that uses the function created to get codes and inserts them in the table created in the<br />
above step. The stored proc should accept number of codes to generate, and size of each code.</p>
<p>using aspx c#,</p>
<p>1. create an application that allows users to log in, and using previous stored proc, allows user to view codes and<br />
generate more.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: madhivanan</title>
		<link>http://blog.sqlauthority.com/2006/12/10/sql-server-find-stored-procedure-related-to-table-in-database-search-in-all-stored-procedure/#comment-116024</link>
		<dc:creator><![CDATA[madhivanan]]></dc:creator>
		<pubDate>Fri, 04 Feb 2011 11:29:02 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/2006/12/10/find-stored-procedure-related-to-table-in-database/#comment-116024</guid>
		<description><![CDATA[One option is to run a profiler and see]]></description>
		<content:encoded><![CDATA[<p>One option is to run a profiler and see</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Priya</title>
		<link>http://blog.sqlauthority.com/2006/12/10/sql-server-find-stored-procedure-related-to-table-in-database-search-in-all-stored-procedure/#comment-115573</link>
		<dc:creator><![CDATA[Priya]]></dc:creator>
		<pubDate>Tue, 01 Feb 2011 19:53:10 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/2006/12/10/find-stored-procedure-related-to-table-in-database/#comment-115573</guid>
		<description><![CDATA[Hi Pinal,

I am facing a strange issue. On one of my tables data gets deleted automatically. Is there a way to find out which jobs are affecting the table?

Regards,
Priya]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal,</p>
<p>I am facing a strange issue. On one of my tables data gets deleted automatically. Is there a way to find out which jobs are affecting the table?</p>
<p>Regards,<br />
Priya</p>
]]></content:encoded>
	</item>
</channel>
</rss>

