HOW TO export XML from SQL using a stored procedure
From SQLXML.org 1) Generate a file with the text-editor like: Save it as c:\temp\template.tpl 2) Open Query Analyzer and type: sp_makewebtask @outputfile = 'c:\temp\myxmlfile.xml', @query = 'select * from sysobjects for xml auto', @templatefile = 'c:\temp\template.tpl' The result is a XML-File! More ^