It sounds like just an Insert statement that would go before your SP (of course you could just add that to the beginning of that SP in sql)
INSERT INTO table_name (column1, column2, column3,...)
VALUES (value1, value2, value3,...)
If you are pulling the values in the "Execute sql script on.......
|