Where do I look in Microsoft SQL Server system tables to find info about the parameters a builtin stored procedure or function takes?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Looks like a join on sys.system_objects and sys.system_paramters will do it. This should get you started:
Reset with the columns you’re interested in and you should be good.
Make it a left outer join to pick up objects that have no parameters.