what are input dataset and output dataset options?
Answer Posted / thirumalesh.e.
dataset options which effect and protect records are input options, where as
options those effect output or dataset created after PDV process is done are output options.
ex. Alter, bufno, bufsize, compress, encoding, encrypt , keep and other who does the same role. are input options.
label, genmax, index, obs, outrep, replace and other who does the same role are output options.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What do the mod and int function do? : Sas programming
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 do the in= variables improve the capability of a merge? : Sas programming
what versions of sas have you used (on which platforms)? : Sas programming
Describe the function and untility of the most difficult SAS macro that you have written.
What is the maximum length of the macro variable? : sas-macro
How would you invoke a macro? : sas-macro
Differentiate between sas functions and sas procedures.
What is SAS?
Mention how to limit decimal places for the variable using proc means?
How does proc sql work?
Mention what is SAS data set?
What are the data types that sas contain?
what is the different between functions and procs that calculate the same simple descriptive statistics? : Sas programming
What are the default statistics for means procedure?