How could you generate test data with no input data?

Answer Posted / salman

For this Question the correct answer is data _NULL_

Is This Answer Correct ?    10 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

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


for whom is sas data integration studio designed? : Sas-di

560


Difference between SAS STATA & SPSS?

685


what is business intelligence? : Sas-bi

587


Explain the use of proc print and proc contents?

562






what is sas metadata server? : Sas-di

597


which features do you use to check the data validations and errors? : Sas-administrator

554


Can you suggest us materials for sdtm mapping?

4043


how would you create multiple observations from a single observation? : Sas programming

572


Explain what Proc glm does?

643


how to debug and test the sas program? : Sas-administrator

576


explain the concepts and capabilities of business object? : Sas-bi

546


How we can call macros with in data step? : sas-macro

619


Differentiate between ceil and floor functions.

658


Give some examples where proc report’s defaults are same as proc print’s defaults?

649