SAS Procedures

Help using Base SAS procedures
BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Nasser_DRMCP
Lapis Lazuli | Level 10

Hello,

 

I have2 datasets with the same strcuture.

the first holds 945057 rows and the second holds 944820 rows.

I would like to get in an output dataset only rows that are missing in the second dataset.

thanks in avdance for your help

regards

Nasser

1 ACCEPTED SOLUTION

Accepted Solutions
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Something like (not tested as nothing to test on):

data want;
  set have 1 (in=a) have2 (in=b);
  /* Note I do not know what variables are in each so I cannot put anything in the next row */
  by ...;
  if a and not b;
run;

You could also use except in SQL, proc compare with dataset output.  Again, without test data in the form of a datastep I can't be anymore specific.

View solution in original post

1 REPLY 1
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Something like (not tested as nothing to test on):

data want;
  set have 1 (in=a) have2 (in=b);
  /* Note I do not know what variables are in each so I cannot put anything in the next row */
  by ...;
  if a and not b;
run;

You could also use except in SQL, proc compare with dataset output.  Again, without test data in the form of a datastep I can't be anymore specific.

sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 3489 views
  • 0 likes
  • 2 in conversation