How can a SAS WEB REPORT STUDIO USER identify which report
tabs they have been permitted without entering the SAS WEB
REPORT STUDIO
Answers were Sorted based on User's Feedback
Answer / ak
we can see our access permissions in sas management console,
| Is This Answer Correct ? | 10 Yes | 1 No |
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.
Explain by-group processing?
How to create a permanent sas data set?
what is PhaseIII, ODS, TLG, Macro and Proc in SAS
what is sas metadata repository? : Sas-bi
how will you locate the sas platform applications? : Sas-bi
State the difference between INFORMAT and FORMAT ?
what are some good sas programming practices for processing very large data sets? : Sas programming
What SAS statements would you code to read an external raw data file to a DATA step?
How to find out no. of business days in a month using macros.???(excluding weekends and holidays).
what are several options for creating reports in web report studio? : Sas-bi
Explain what is data step?