BookmarkSubscribeRSS Feed
Sandyz
Fluorite | Level 6

 

Hi All,

 

I have a requirement to convert a ODM xml file to sas dataset. i have used below method to do that, but the execution time is more as it is  a 25MB file. Is there any way to do it faster.

 

 

filename NHL  "/path/ODM.xml";

filename map "/path/odm_map.map";

 

libname NHL xmlv2 xmlmap=map;

 

proc copy in=nhl out=work;

run;

 

ODM.xml is a 25 mb file so when i try to copy those datasets present in NHL to work library, it's taking allmost 10 min, is there any way to reduce the execution time.

 

Thanks& regards,

Sandeep Reddy

2 REPLIES 2
ballardw
Super User

First thing would be to check if the path to the source file is on a network. You may be getting a bottleneck in network performance and might run faster when the data is local to the machine running SAS (SAS server or your computer if local install).

 

 

Saranya_Sub
Obsidian | Level 7

hi , did the problem resolve ,am facing the same issue now

 

copy from XML engine to SAS is taking huge time

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 567 views
  • 0 likes
  • 3 in conversation