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 |
In sas admin differentiate between roles and capabilities? : sas-grid-administration
do you prefer proc report or proc tabulate? Why? : Sas programming
What is highest missing value for numeric?
How to save the log information in a file for future use
how does sas handle missing values in sort order? : Sas programming
Describe a time when you were really stuck on a problem and how you solved it?
What is difference between sas rename and lable?
how does sas handle missing values in procs? : Sas programming
What are _numeric_ and _character_ and what do they do?
How to read an input file in sas?
what is SAS OPTIMIZATION?
What is the difference between match merge and one to one merge?