Proc_Parser is a stored procedure for SQL Server 6.5, 7.0, and 2000 that separates the parameters of a string list and returns the data in a table, i.e.:
EXEC PROC_PARSER ‘ X=10 Y=35 Z=ABC W=”TESTE=2″ ‘
Will return:
NAME VALUE
——— ————
X 10
Y 35
Z ABC
W “TESTE=2”
Author: Mauro C. Pichiliani
Download Script:
PROC_PARSER.sql
Disclaimer: We hope that the information on these script pages is
valuable to you. Your use of the information contained in these pages,
however, is at your sole risk. All information on these pages is provided
“as -is”, without any warranty, whether express or implied, of its accuracy,
completeness, or fitness for a particular purpose…
Disclaimer Continued
Back to Database Journal Home