what are the best practices to process the large data sets in sas programming? : Sas-administrator
No Answer is Posted For this Question
Be the First to Post Answer
What are the data types does SAS contain?
If you need the value of a variable rather than the variable itself what would you use to load the value to a macro variable? : sas-macro
how to remove duplicates using proc sql?
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.
Difference between informat and format?
how to debug and test the sas program? : Sas-administrator
Where do you use proc means over proc freq?
how do u test a pros sql(works or not) without executing it?
What are all the problems you faced while validating tables and reports?
0 Answers Accenture, Quintiles,
What is difference between Global n Local Macro Variables..?
What is slibref?
I am having a stored process.it needs to route my report to both hthml and Xls.By default SP routes to html.I used the PRINTTO to route the html to Xls.BUt it createsthe file not but no content was written to file(0KB)?how can i do it?