I have a 5GB size XML data file and I need that imported to SAS. I am trying using libname and its still running and running
libname in xml 'C:\Test\Datafile.xml';
data want;
set in.want;
run;
Is there a better way to import this file?
Thanks
Method 1 - Which is what you are doing.
Method - 2 Using Proc copy
Method 3 - Using xmlmap
Method - 4 Using excel
Everything in detail is available in this fantastic global forum paper.