BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
alepage
Barite | Level 11

Many of our oracles tables will be changed in few weeks.  Up to now, we have test table are available but, the number of observations is low compare to the original table.

 

I would like to compare the old table with the test table but I want to paired the idnumber of the old table with the idnumber of the test table then compare the other variables.

 

Is there a nice way to do that with proc compare?

Regards,

1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

It would depend on just what you are looking for from the comparison. Proc compare is often not the best choice when there is a significant difference in the number of records between the two data sets.

You should describe exactly what you are looking for from the comparison.

 

If you are trying to determine if values from the test data set differ from those in the base data only for the idnumbers in the test data set then the approach would be to select the records from the base data set based on those in the test set and then use proc compare. Something like:

 

Proc sql;

    create table baseid as

    select b.*

    from (select distinct idnumber from test) as a

            left join

            base as b

            on a.idnumber = b.idnumber

   ;

run;

 

If there were other specific types of questions about the two sets then you may need to provide more details.

View solution in original post

1 REPLY 1
ballardw
Super User

It would depend on just what you are looking for from the comparison. Proc compare is often not the best choice when there is a significant difference in the number of records between the two data sets.

You should describe exactly what you are looking for from the comparison.

 

If you are trying to determine if values from the test data set differ from those in the base data only for the idnumbers in the test data set then the approach would be to select the records from the base data set based on those in the test set and then use proc compare. Something like:

 

Proc sql;

    create table baseid as

    select b.*

    from (select distinct idnumber from test) as a

            left join

            base as b

            on a.idnumber = b.idnumber

   ;

run;

 

If there were other specific types of questions about the two sets then you may need to provide more details.

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

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 872 views
  • 0 likes
  • 2 in conversation