BookmarkSubscribeRSS Feed
knveraraju91
Barite | Level 11

Dear,

 

I need compare to two sets of xpt files in different folders. How to compare the xpt datasets and find differences. Please suggest.

 

Thank you

2 REPLIES 2
SASKiwi
PROC Star

Extract the datasets from the XPT files into normal SAS datasets and then use PROC COMPARE to check difference between the datasets:

libname testlib xport 'c:\temp\MyFile.xpt'; 
proc copy in=testlib out=work; 
  select MyTable1 MyTable2; 
run;

proc compare base = Mytable1
             compare = MyTable2;
run;
ballardw
Super User

If the dataset names might be the same then import into two different libraries then compare.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 1963 views
  • 2 likes
  • 3 in conversation