I searched online and found following code
but it does not work on my SAS server.
filename bedrock 'C:\XMLdata\fred.xml';
libname bedrock xml;
proc print data=bedrock.fred;run;
I got error message
ERROR: File BEDROCK.FRED.DATA does not exist
though there is a file.
any idea? Thanks,
p********a 发帖数: 5352
2
libname bedrock xml bedrock;
You forgot the data location
s******r 发帖数: 1524
3
I just figured out my xml file is not standard version. SAS xml engine can
not handle it.
Thanks