I had a need to do this recently and came across the following sql which you can run in analyser select * from tablename for XML RAW, ROOT ('root'), ELEMENTS XSINIL This will output your table and contents as XML within a single result and you just need to put this into an xml file. Hopefully...