Identify statements whose placement in the DATA step is
critical.

Answer Posted / madhu

Input statement

Is This Answer Correct ?    1 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Did you used proc test? when?

1575


Mention the category in which sas informats are placed?

629


What are symget and symput? : sas-macro

735


What are the difference between ceil and floor functions in sas?

712


what has been your most common programming mistake? : Sas programming

569






What are the difficulties u faced while doing vital signs table or dataset?

1939


How long can a macro variable be? A token? : sas-macro

719


Enlist the syntax rules followed in sas statements.

619


what is sas metadata server? : Sas-di

595


if the Id has more then two transcatiion then show the first observation, IF Id has only two observation then It show both the observation

1169


What are all the problems you faced while validating tables and reports?

3016


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.

1803


What are the different types of sas functions?

608


Mention common programming errors committed in sas ?

647


How would you include common or reuse to be processed along with your statements?

1903