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

Answer Posted / 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       View All Answers


Please Help Members By Posting Answers For Below Questions

name several ways to achieve efficiency in your program? : Sas programming

583


how can you put a "trace" in your program? : Sas programming

583


what are the component of range? : Sas-bi

631


How would you invoke a macro? : sas-macro

563


what is the difference between unique key and primary key? : Sas-di

613






data data1; input dt account; format dt date9.; cards; 1745 1230 1756 1120 1788 1130 1767 1240 ; data data2; input startdt enddt total; format startdt date9. enddt date9.; cards; 1657 1834 12300 1557 1758 16800 1789 1789 12300 1788 1345 12383 1899 1899 13250 ; proc sql; create table data3 as select * from data1 as x left join data2 as y on x.dt>=y.startdt and x.dt<=y.enddt; quit; Here, we are getting cartision product. But,I want left join report consisting of this program. It should not get duplicate values. you can modify the program also.

1811


Do you need to know if there are any missing values?

609


how sas deals with business intelligence? : Sas-bi

593


what does the run statement do? : Sas programming

566


What are the data types that sas contain?

667


what is sas application server? : Sas-di

554


What are the different operating system platforms in which we can use sas? : sas-grid-administration

607


What is the maximum and minimum length of macro variable

663


What are the default statistics that proc means produce?

612


what is change analysis in sas di ? : Sas-di

616