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
what are _numeric_ and _character_ and what do they do? : Sas programming
Differentiate input and infile.
Which command is used to perform sorting in sas program?
What is the purpose of trailing @ and @@? How do you use them?
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 can you import .csv file in to sas? : Sas programming
How you can read the variables that you need?
how sas deals with business intelligence? : Sas-bi
For a user to have access to a standard workspace server, is internal authentication alone is sufficient? : sas-grid-administration
what is operational data and operational system? : Sas-di
what is function of retain statment
Are you involved in writing the inferential analysis plan? Tables specfications?
how does sas handle missing values in functions? : Sas programming
What is the use of function Proc summary?
Name few SAS functions?