what other SAS features do you use for error trapping and
data validation?
Answer Posted / mani
Use 'Validation' option
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is the basic syntax of a sas program?
How to create list output for cross-tabulations in proc freq?
What is auto call macro and how to create a auto call macro? What is the use of it? How to use it in sas with macros? : sas-macro
What are all the problems you faced while validating tables and reports?
What are the functions used for character handling?
how to debug and test the sas program? : Sas-administrator
What do the PUT and INPUT functions do?
In proc transpose and data step with arrays which one you pick?
what are all the reports you generated in your recent project?
Hi, Does anybody has lastest SAS certification(base, adv., clinical)dumps,if anybody has please email me at mailtorajani76@gmail.com. Thanks
what are the categories that sas informats are used to the place the data? : Sas-administrator
What would be the result of the following SAS function (given that 31 Dec, 2000 is Sunday)?
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 is the difference between input and infile statement?
What are the different servers in sas? : sas-grid-administration