I have a stored procedure that requires XML data as a parameter for it to run. When I run a SQL trace on this proc, it looks like this:
EXEC import_rates_xml_sp
0,N'
'
In the example above, 2 records are being passed from an existing SQL table to the stored procedure. I know this table very well. My problem is how do I create this XML structure and pass it to the procedure?
Many thanks.
Jim