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 is the basic structure sas administrator? : Sas-administrator
You have a data set of 100 observations,how can you restrict the output so that the output has only data from row no. 10 to row no. 20
tell me about intnx, intcx functions?
Can you execute a macro within a macro? Describe. : sas-macro
What is PROC in SAS?
Describe how you would pass data to macro.
How would you code a merge that will write the matches of both to one data set, the non-matches from the left-most data set to a second data set, and the non-matches of the right-most data set to a third data set?
What is the use of PROC gplot?
What is LAG function?How is it used? can any one explain
3 Answers TRE, Verinon Technology Solutions,
how do you validate sas program?
How are numeric and character missing values represented internally?
How do you write a test plan?