how do you validate tables abd reports?
Answer Posted / nandu
We can validate by double programing
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
How does the internal authentication work in sas? : sas-grid-administration
what techniques and/or procs do you use for tables? : Sas programming
Explain the purpose of retain statement.
If you could design your ideal job, what would it look like?
What is PROC in SAS?
why is a stop statement needed for the point=option on a set statement? : Sas programming
What is a pdv and what are its functions?
What are the advantages of using sas?
If a variable contains letters or special characters, can it be numeric data type?
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 we can call macros with in data step? : sas-macro
What are the 3 components in sas programming?
how to remove duplicates using proc sql?
how do you pull data from equifax?tell me the process?
which features do you use to check the data validations and errors? : Sas-administrator