BookmarkSubscribeRSS Feed
deleted_user
Not applicable
Hi All,

I would like to know as how to convert SAS datasets to XML with SAS 8.2. Ist it possible with 8.2 or I need to have a XML engine?
Can someone give out the solution.

Thanks,
Priya
1 REPLY 1
deleted_user
Not applicable
the best solution is to upgrade to SAS9

the simplest solution works like:[pre]
libname yourxm xml 'your.xml' ;
proc copy in= sashelp out= yourxm mt= data;
select class ;
run;
libname yourxm clear ;[/pre]
You could create your data set directly in the xml library, but it seems more normal, to just copy them from wherever. For that, proc copy seems simplest.

The XML engine delivered with SAS8.2 is a bit basic, but exists. There is an improved version available for download from the http://support.sas.com/index.html website. (but that isn't the simplest solution, nor the "best" 😉


PeterC

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

Discussion stats
  • 1 reply
  • 1369 views
  • 0 likes
  • 1 in conversation