which date function advances a date, time or datetime value by a given interval? : Sas programming
1011how does sas handle missing values in: assignment statements, functions, a merge, an update, sort order, formats, procs? : Sas programming
993how would you determine the number of missing or nonmissing values in computations? : Sas programming
1104
Difference between sum function and using “+” operator?
What are the different operating system platforms in which we can use sas? : sas-grid-administration
In ARRAY processing, what does the DIM function do?
Explain input and put function?
How do you control the number of observations and/or variables read or written? Approximately what date is represented by the SAS date value of 730?
what are input dataset and output dataset options? : Sas programming
what is scheduling and how will u implement it. In scheduling 5 jobs r running if there is an error occured at 3rd job and how will u check and waht necessary steps will u take not to repeat the same mistake
Name few SAS functions?
Explain what is data step?
What is the function of Stop statement in a SAS Program?
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.
What are the different versions of sas that you have used until now? : sas-grid-administration
what are several options for creating reports in web report studio? : Sas-bi
How would you define the end of a macro?
how do you debug and test your sas programs? : Sas programming