Alter all store procedure parameter size- INFORMATION_SCHEMA.PARAMETERS

  • i need to alter stored procedures that have parameter of Reason or comments.

    i found all stored procedures name by below query

    select * from INFORMATION_SCHEMA.PARAMETERS where (Parameter_Name like '%Comment%' or Parameter_Name like '%Reason%') and Character_Maximum_Length<500

    i need to change all parameters size to 500.

Viewing 0 posts

You must be logged in to reply to this topic. Login to reply