I have several stored procedures that use the same set of parameters. Is there a way to define and save a list of parameters as a reusable block of code? Something like that:
CREATE PROCEDURE test
Using StoredParameterList
AS
BEGIN
SQL Statement
END
Is it possible? This would make code maintenance easier if a parameter needs to be changed.
source
share