Find out The column list which are referenced by paricular table in stored procedure using DMV

  • How to find out The column list which are referenced by paricular table in stored procedure using DMV

  • You can use this

    SELECT * FROM INFORMATION_SCHEMA.ROUTINES

    WHERE ROUTINE_DEFINITION LIKE '%ColumnName%TableName%'

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply