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 |
If you have a dataset that contains 100 variables, but you need only five of those, what is the code to force SAS to use only those variables?
What is a pdv and what are its functions?
what is the use of proc contents and proc print in sas? : Sas-administrator
What is the difference between %put and symbolgen? : sas-macro
Which command is used to perform sorting in sas program?
how can u join the two tables without using proc sql Joins and nested queries ?
Describe the function and utility of the most difficult SAS macro that you have written?
I am preparing SAS Certified Advanced Programmer for SAS 9 in 2014. If anybody has the latest dumps for this exam, please mail me at dhiman.mukherjee@gmail.com
What is the difference between Proc tabulate and Proc print
Code a PROC MEANS that shows both summed and averaged output of the data.
Do you prefer Proc Report or Proc Tabulate? Why?
how we can call macros with in data step?