We are looking for a way to automatically save all data from MS SQL 2008 R2 via our application GUI (not SSMS). We want to export all data from all tables into a single XML using 'for XML Auto' where the table name begins with 'Params'.
EXEC sp_MSforeachtable
@command1 = N'CAST(select * from ? for xml auto)',
@whereand = N'and o.name like ''Params%''') AS XML)
does the selection nicely, but the problem is that all table data will result in a separate XML stream, however, I want to create a single XML.
How would I go about combining the result sets into one? Shall I copy and modify sp_MSforeachtable or is there a way to use the standard SP? I'd like to make this selection as fast as possible so I'd like to avoid selecting XMLs into a temp table then concatenating them into a single XML stream.