This procedure will let you execute existing stored procedure with several sets of multiple parameters
like: exec _ParamSplit_SP 'ColorSP', "258,'RED';367,'BLUE';125,'GREEN'",";"
it will be the same as
exec ColorSP 258,'RED'
exec ColorSP 367,'BLUE'
exec ColorSP 125,'GREEN'
Created for SQL 7
Creating a PDF from a Stored Procedure in SQL Server
A short but interesting article, the author has figured out a way to create a PDF from a stored procedure without using a third party library.
2019-09-20 (first published: 2003-08-26)
73,225 reads