Hello, I am converting a dataset into an XML file using EG 7.11. I have noticed that even if I use xmltype=oracle, when I add a tagset conditions, it replace <ROWSET> for <TABLE>. Here's my code. In the first example, I don't use any tagset condition so the root element <ROWSET> remains in the xml file. However, when I add any tagset condition, the root element is replaced for <TABLE>. How can we avoid that? Regards, %let Path=\\...; libname trans xml "&Path.\Documents\Test\XML\class.xml" xmltype=oracle; data trans.class noprint; set sashelp.class; run; libname trans xml "&Path.\Documents\Test\XML\class.xml" xmltype=oracle tagset=tagsets.sasxmnsp; data trans.class noprint; set sashelp.class; run;
... View more