BookmarkSubscribeRSS Feed
R_Win
Calcite | Level 5
data x1;
input id sal ;
cards;
12 23
78 45
run;

data x2;
input id sal;
cards;
23 56
78 59
run;

data x3;
input id sal;
cards;
02 56
45 86
run;


data x_fin;
set x1 x3 x2;
run;

data x5;
input id sal;
cards;
02 56
45 86
run;


data x_fin;
set x1 x3 x2 x5 ;
run;


data x6;
input id sal;
cards;
02 56
45 86
run;

data x_fin;
set x1 x3 x2 x5 x6;
run;

i have created x_fin dataset by keeping x1,x2,x3 and after that i have added x5 and updated and after that i have added x6 to the dataset x_fin now.i want the dataset that was recently updated to x_fin and i should move that observations to a new dataset as x_updsets.so please help me out this is a example as Real time daily many datesets will come and set to one dataset now i want to find which dataset was added to it recently
1 REPLY 1
GertNissen
Barite | Level 11
Have a look at SASHELP.VTABLE and the columns modate and crdate.

Resources:
- Sample 25436: Demonstrates basic SQL DICTIONARY statements -> http://support.sas.com/kb/25/436.html
- Dictionary Tables and Views: Essential Tools for Serious Applications -> http://www2.sas.com/proceedings/sugi29/237-29.pdf
- An Introduction to SAS® Dictionary Tables -> http://www2.sas.com/proceedings/forum2007/235-2007.pdf

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

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.

SAS Training: Just a Click Away

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

Browse our catalog!

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