Name statements that function at both compile and
execution time.
Answers were Sorted based on User's Feedback
how can you sort the dataset having millions of OBS(instead of sort procedure?
How to convert a given date value into SAS date
9 Answers CitiGroup, Quintiles,
What is the role of unrestrictive users? : sas-grid-administration
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.
Code a PROC SORT on a data set containing State, District and County as the primary variables, along with several numeric variables.
where will go the observations that were deleted by delete statement?
what are different type of sas servers ? On which server does the sas code execute ?
When merging 2 datasets with a common variable (not merge key), how to keep both?
What is the difference between nodupkey and nodup options?
explain the proc in sas? : Sas-administrator
How do you debug macros?
What is SAS informats?