Get the parameter list of a Storedprocedure in SQL Server
There is way find what are the parameter list for a storedprocedure in sql server rather find them by open individually.
Hope this would be very useful for developers who are working with database.
SELECT PARAMETER_NAME,DATA_TYPE,PARAMETER_MODE
FROM INFORMATION_SCHEMA.PARAMETERS
WHERE SPECIFIC_NAME='AddDefaultPropertyDefinitions'
Hope this would be very useful for developers who are working with database.
Comments
Post a Comment