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

How do dates work in SAS data?

0 Answers  


What is _n_?

23 Answers   Accenture,


For clinical entire study how many tables will create approx?

0 Answers   TCS,


What are symget and symput? : sas-macro

0 Answers  


PROC SQL always ends with QUIT statement.Why cant you use RUN in PROQ SQL ?

7 Answers   HP,






Hi Friends, My name is Priya,am new to this Forum. am looking for SAS Platform Administration Interview Questions.I searched every where but I couldn't find any where.please can anyone help me with the FAQ's. It would be a great favor to me if you can email the Interview Questions to priyafeb84@gmail.com

0 Answers  


What is the size of PDV?

2 Answers   L&T,


Differentiate between format and informat? : sas-grid-administration

0 Answers  


explain about sas business intelligence? : Sas-bi

0 Answers  


Under what circumstances would you code a SELECT construct instead of IF statements?

4 Answers  


what is business intelligence? : Sas-bi

0 Answers  


/*i have the following dataset.*/ data score; input marks ; datalines; 10 20 30 40 50 60 70 80 90 100 ; run; Now i should get the result as sum of 1 to 5 i.e(10+20+30+40+50)=150 and 2 to 6 i.e(20+30+40+50+60)=200 and 3 to 7 i.e(30+40+50+60+70)=250 and so on. how to get it. thanks in advance

2 Answers   Eval Source,


Categories