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 function of output statement in a SAS Program?
Explain the purpose of retain statement.
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
What do you feel about hardcoding?
what is syntax of proc merge ?
how does sas handle missing values in formats? : Sas programming
what other SAS features do you use for error trapping and data validation?
How does Mr.Lanka Srinivas teach SAS? Are his accomplishments real? What are the future prospects for SAS?
What are the best sas programming practices for handling very large datasets? : sas-grid-administration
Code a PROC SORT on a data set containing State, District and County as the primary variables, along with several numeric variables.
How to import multiple xls files into sas. Out of those files, how to get different values from a single variable and how to find number of rows per value type? We can do this using group by for one xls file with proc sql. Was wondering how I can achieve this for multiple files at the same time. Any ideas?
What is program data vector (pdv)?