What statement do you code to tell SAS that it is to write
to an external file? What statement do you code to write the
record to the file?
Answer Posted / kishan
1. file and put statements
2. Export Procedure
3. ODS also write the data to an external file
| Is This Answer Correct ? | 9 Yes | 0 No |
Post New Answer View All Answers
Tell e how how dealt with..
What are the parameters of scan function?
what are the benefits of data integration? : Sas-di
What is the good sas programming practices for processing large data sets?
If you need the value of a variable rather than the variable itself what would you use to load the value to a macro variable? : sas-macro
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.
Mention what is the difference between nodupkey and nodup options?
for what purpose would you use the retain statement? : Sas programming
How would you determine the number of missing or nonmissing values in computations?
Explain the difference between using drop = data set option in set and data statement?
Can you execute macro within another macro? If so, how would sas know where the current macro ended and the new one began? : sas-macro
how will you location sas platform applications available from web browser? : Sas-bi
i have a dataset with 100 obs i want to generate title from 20th obs onwards with total observations. that should contain 100 obs.dont use firstobs and dnt split the data. use dataset block or proc report? how can we genarate;
How do dates work in SAS data?
How do you add a number to a macro variable? : sas-macro