At compile time when a SAS data set is read, what items are
created?
Answer Posted / ananth
it checks the syntax error.
descriptor portion of the dataset.
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
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 are the uses of sas?
do you prefer proc report or proc tabulate? Why? : Sas programming
Describe a time when you were really stuck on a problem and how you solved it?
Explain why double trailing @@ is used in input statement?
how will you location sas platform applications available from web browser? : Sas-bi
What is the use of PROC gplot?
What are the automatic variables for macro? : sas-macro
How to create a permanent sas data set?
what is the basic structure sas administrator? : Sas-administrator
What is the difference between reading data from an external file and reading data from an existing data set?
explain the key concept of sas? : Sas-administrator
Of all your work, where have you been the most successful?
What are the statements that are executed only?
What is a pdv and what are its functions?