Apr 8, 2004 #1 snippy Programmer Mar 31, 2004 7 US Does anyone know of a quick way to find all stored procedures that reference a particular table?
Apr 12, 2004 #2 vpshriyan IS-IT--Management Jul 26, 2002 356 IN Hi, A possible solution for your requirement would look similar to the following SQL: select procname from sysprocedures where procid in ( select procid from sysprocbody where datakey='T' and data matches '* your_table_name *' ) ; Regards, Shriyan Upvote 0 Downvote
Hi, A possible solution for your requirement would look similar to the following SQL: select procname from sysprocedures where procid in ( select procid from sysprocbody where datakey='T' and data matches '* your_table_name *' ) ; Regards, Shriyan