how to know the attributes of first five datasets in a library
Answers were Sorted based on User's Feedback
Answer / sagar
Use Proc Content procedure to know the attributes of the Dataset
Is This Answer Correct ? | 18 Yes | 1 No |
Answer / naresh
proc datasets library = work details;
contents data = xx1;
contents data = xx2;
contents data = xx3;
contents data = xx4;
contents data = xx5;
run;
It will give information about data sets in a library.........
Is This Answer Correct ? | 8 Yes | 0 No |
What do the SAS log messages "numeric values have been converted to character" mean?
hi guys ...i have one query... data abc; input s w k g o t a m; cards; 1 2 3 4 5 6 7 8 2 3 4 5 6 7 8 9 ; run; i want the output to be the sorted order(only variables).observations should not be changed..
how does sas handle missing values in sort order? : Sas programming
Approximately what date is represented by SAS date value of 730
There is a field containing a date. It needs to be displayed in the format "ddmonyy" if it's before 1975, "dd mon ccyy" if it's after 1985, and as 'Disco Years' if it's between 1975 and 1985. How would you accomplish this in data step code? Using only PROC FORMAT
What is the basic syntax of a sas program?
how to remove duplicates using proc sql?
if the Id has more then two transcatiion then show the first observation, IF Id has only two observation then It show both the observation
what are all the default values getting in PROC MEANS...???
Differentiate between ceil and floor functions.
where will go the observations that were deleted by delete statement?
why a stop statement is needed for the point= option on a set statement?