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

Hi Guys

I have huge datasets in a library so i want extract last 5 observations for each dataset in a library 

1 ACCEPTED SOLUTION

Accepted Solutions
Kurt_Bremser
Super User

@singhsahab with large datasets, you should use the POINT option:

data &&data&i;
do pt = nobs - 4 to nobs;
  set yrlibname.&&data&i nobs=nobs point=pt;
  output;
end;
stop;
run;

as that avoids reading the whole dataset.

View solution in original post

4 REPLIES 4
PeterClemmensen
Tourmaline | Level 20

And what do you want to do with those 5 obervations?

singhsahab
Lapis Lazuli | Level 10
proc sql;
select count(*) into :co from dictionary.tables where libname like 'yrlibname';
select memname into :data1 - :data%left(%trim(&co)) from dictionary.tables where libname like 'yrlibname';
quit;

%macro data_extract;
%do i=1 %to &co;
data &&data&i;
set yrlibname.&&data&i nobs=nobs;
if _n_ > nobs - 5;
run;
%end;
%mend;

%data_extract;
Kurt_Bremser
Super User

@singhsahab with large datasets, you should use the POINT option:

data &&data&i;
do pt = nobs - 4 to nobs;
  set yrlibname.&&data&i nobs=nobs point=pt;
  output;
end;
stop;
run;

as that avoids reading the whole dataset.

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
  • 4 replies
  • 833 views
  • 9 likes
  • 4 in conversation