HOW TO export XML from SQL using a stored procedure

From SQLXML.org

1) Generate a file with the text-editor like:

<%begindetail%>
<%insert_data_here%>
<%enddetail%>


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 ^

Comments

Popular posts from this blog

Uncle Bob vs. Grady Booch: Rethinking Code Reviews in the Age of AI

10 Tips to Avoid Claude Usage Limits

This Week I Learned - Week 14 2026