Follow Our FB Page << CircleMedia.in >> for Daily Laughter. We Post Funny, Viral, Comedy Videos, Memes, Vines...


how to know the attributes of first five datasets in a library

Answers were Sorted based on User's Feedback



how to know the attributes of first five datasets in a library..

Answer / sagar

Use Proc Content procedure to know the attributes of the Dataset

Is This Answer Correct ?    18 Yes 1 No

how to know the attributes of first five datasets in a library..

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

Post New Answer

More SAS Interview Questions

What do the SAS log messages "numeric values have been converted to character" mean?

0 Answers   Quintiles,


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..

14 Answers  


how does sas handle missing values in sort order? : Sas programming

0 Answers  


Approximately what date is represented by SAS date value of 730

9 Answers  


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

8 Answers   D&B,






What is the basic syntax of a sas program?

0 Answers  


how to remove duplicates using proc sql?

0 Answers  


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

0 Answers   CTS,


what are all the default values getting in PROC MEANS...???

2 Answers  


Differentiate between ceil and floor functions.

0 Answers  


where will go the observations that were deleted by delete statement?

2 Answers  


why a stop statement is needed for the point= option on a set statement?

0 Answers  


Categories