· What are some good SAS programming practices for
processing very large data sets?
Answer Posted / sibin
Use
1.WHERE Condition
2.DROP KEEP in Set Statement
3.ARRAY
4.Mutually Exclusive Conditions like DO ,DO UNTIL,DO WHILE
| Is This Answer Correct ? | 16 Yes | 1 No |
Post New Answer View All Answers
What is maximum storage capability of SAS?
Explain how you can debug and test your SAS program?
what are the considerations when picking a SAS/STAT procedure?
how are numeric and character missing values represented internally? : Sas programming
How do you control the number of observations and/or variables read or written?
What is the difference between input and infile statement?
What would you change about your job?
explain what is factor analysis? : Sas-administrator
what are sas bi dashboard components? : Sas-bi
What is the use of the %include statement?
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.
How we can create SAS USER DEFINED CODE?
How can you create a macro variable with in data step? : sas-macro
what are the scrubbing procedures in sas? : Sas programming
How does SAS handle missing values in: assignment statements, functions, a merge, an update, sort order, formats, PROCs?