Check column dependency in SQL Server

How To Find Column dependency in SQL Server Store procedure

We can use following queries to find the column dependency in SQL Server Store Procedures i.e.

Example1,
-- THIS QUERY WILL SEARCH IN STORED PROCEDURE ONLY.
SELECT DISTINCT OBJECT_NAME(OBJECT_ID),
            OBJECT_DEFINITION(OBJECT_ID)
            FROM SYS.PROCEDURES
WHERE OBJECT_DEFINITION(OBJECT_ID) LIKE '%' + 'User_ID' + '%'
GO

Example 2,
-- THIS QUERY WILL SEARCH IN ALL OBJECTS
SELECT OBJECT_NAME(OBJECT_ID),
            DEFINITION
            FROM SYS.SQL_MODULES
WHERE DEFINITION LIKE '%' + 'User_ID' + '%'
            ORDER BY OBJECT_NAME(OBJECT_ID)
GO

ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

How To Find Column dependency in SQL Server Store procedure How To Find Column dependency in SQL Server Store procedure Reviewed by Anil Singh on 11:53 PM Rating: (5)
www.code-sample.com/. Powered by Blogger.
^