Well, if i want to find parameter count of any stored procedure or function inside SQL SERVER, what is the correct way to do it.
Your help would be appreciated. tha
INFORMATION_SCHEMA.PARAMETERS should be all you need...
INFORMATION_SCHEMA.PARAMETERS
SELECT * FROM INFORMATION_SCHEMA.PARAMETERS