Click here to Skip to main content
15,916,463 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How to get list of stored procedures in database which using tbl_user in the sp and contain input parameters @pUserid , @puserName.

the below query gives only contain table name, how i can add Input parameters condition.

SQL
SELECT Name
FROM sys.procedures
WHERE OBJECT_DEFINITION(OBJECT_ID) LIKE '%tbl_user%'



Regards,
Ravi Kumar
Posted

1 solution

See here: sql server - How do I get the list of all stored procedures and their parameters starting with a certain prefix? - Stack Overflow[^]
It doesn't specifically answer your question, but it should give you enough to work from.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900