Have you ever used the SAS Debugger?
No Answer is Posted For this Question
Be the First to Post Answer
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
Which date functions advances a date time or date/time value by agiven interval?
how does sas handle missing values in functions? : Sas programming
What is the difference between SAS Data step and SAS PROC SQL, and which is better?
How can sas program be validated?
How to get top scorer student from a class-table having different sections A,B, C & D? Each section having same number of students.
What is the general format of function in sas? : sas-grid-administration
What are the difficulties u faced while doing vital signs table or dataset?
What type of tables you are using in YOUR reporting..???
2 Answers GSK GlaxoSmithKline,
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 to convert a given date value into SAS date
9 Answers CitiGroup, Quintiles,
What is the pound sign used for in the data_null_ ?