Describe a time when you were really stuck on a problem and
how you solved it?
Answer Posted / chowdary vamsi
when the client data set and Clint requirement not matched like source table don't have sum variables and Clint requirement have sum new variable that time i phase problem i am using trim function we can solve that problem and sum time syntax errors like semicolon like that
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How we can call macros with in data step? : sas-macro
what do you mean by data staging area? : Sas-di
explain the difference between alternate key, business key, foreign key, generated key, primary key, retained key and surrogate key ? : Sas-di
What versions of SAS have you used (on which platforms)?
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.
Which are the statements whose placement in the data step is critical?
In sas, what are the areas that you are most interested in? : sas-grid-administration
What is the role of sas grid administrator? : sas-grid-administration
What areas of SAS are you most interested in?
how we can create a FLAG datasets? Ex:-ID age_group no_persons 1 to 10 10 to 20 3 11 to 20 21 to 30 7 21 to 3o 31 to 40 5
how does sas handle missing values in: assignment statements, functions, a merge, an update, sort order, formats, procs? : Sas programming
what is the use of proc sql? : Sas programming
What are the differences between proc means and proc summary?
What does the RUN statement do?
Which statement does not perform automatic conversions in comparisons?