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

1) I have a dataset A (having millions of records) in LASR library. 

2) Importing B file with few hundred rows.

3) Need to compare A and B and delete common records from A (lasr library) without creating a temporary copy.

 

Solution:

Using imstat statement--(not working)

 

proc imstat data=LASRLIB.A;
merge LASRLIB.A (in=a)
                  B    (in=b);
if a and b;
run;
deleterows / purge; 
run;

 

(Note: Merge not working with proc imstat.)

 

 

Is there any other way to do it?

1 ACCEPTED SOLUTION

Accepted Solutions
jitinsethi07
Obsidian | Level 7

Got the solution!

 

Storing all unique values in macro variable and passing in where clause of proc imstat.

 

proc imstat = lasrlib.A;

where column = &macro;

run;

deleterows / purge;

run;

View solution in original post

1 REPLY 1
jitinsethi07
Obsidian | Level 7

Got the solution!

 

Storing all unique values in macro variable and passing in where clause of proc imstat.

 

proc imstat = lasrlib.A;

where column = &macro;

run;

deleterows / purge;

run;

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

Tips for filtering data sources in SAS Visual Analytics

See how to use one filter for multiple data sources by mapping your data from SAS’ Alexandria McCall.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 981 views
  • 1 like
  • 1 in conversation