Stored procedures and its dependent objects | Database Journal

Stored procedures and its dependent objects

Mar 15, 2004
1 minute read


>>Script Language and Platform: MS SQL Server 7.0/2000
This simple select statement could present you

(1) All the user defined stored procedures in the current database



(2) Stored procedure

s dependencies; stored procedure

s related objects (tables, views)



(3) Actions on the tables or view when executing the stored procedure

Select, Insert, Update and Delete

Author: Claire Hsu

SELECT DISTINCT
–ProcName indicates the stored procedure nane
ProcName=object_name(a.ID),
–TableOrView presents the stored procedrues relate objects
TableOrView=object_name(depid),
–The following are the action from stored procedure’s perspective
‘select’ = case WHEN c.text like ‘%select %’ THENSelectELSEEND,
‘Update’ = case WHEN c.text like ‘%update %’ THENUpdateELSEEND,
‘Delete’ = case WHEN c.text like ‘%delete %’ THENDeleteELSEEND,
‘Insert’ = case WHEN c.TEXT LIKE ‘%Insert %’ THENInsertELSEEND FROM
Sysdepends a INNER JOIN Sysobjects b ON a.ID = b.ID
INNER JOIN Syscomments c
ON a.ID = c.ID
WHERE b.Status > 0



Disclaimer:
We hope that the information on these script pages is
valuable to you. Your use of the information contained in these pages,
however, is at your sole risk. All information on these pages is provided
“as -is”, without any warranty, whether express or implied, of its accuracy,
completeness, or fitness for a particular purpose…

Disclaimer Continued

Back to Database Journal Home

Database Journal Logo

DatabaseJournal.com publishes relevant, up-to-date and pragmatic articles on the use of database hardware and management tools and serves as a forum for professional knowledge about proprietary, open source and cloud-based databases--foundational technology for all IT systems. We publish insightful articles about new products, best practices and trends; readers help each other out on various database questions and problems. Database management systems (DBMS) and database security processes are also key areas of focus at DatabaseJournal.com.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.