sql server - How To Find all Stored Procedure that are using a specific function -
Hi there is a way that I can easily find all the stored procedure in SQL Server which are using a specific function for the pre. Function
fn_Test ()
? I want to see all the stored procedures using this function.
Thanks
It should do after you should do it, any Returns the place with any other entry in the text:
Separate SELECT so.name from syscomments sc INNER sysobjects, so that sc.id = so.id might be WHERE '% Fn_Test%' like sc.TEXT
Comments
Post a Comment