At compile time when a SAS data set is read, what items are
created?
Answer Posted / pointbreak
Three items are created:
1. input buffer:
2.program data vector(PDV)
3.descriptor information:
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
how to remove duplicates using proc sql?
what is factor analysis? : Sas-administrator
If a variable contains letters or special characters, can it be numeric data type?
Are you sensitive to code walk-throughs peer review or QC review?
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 different operating system platforms in which we can use sas? : sas-grid-administration
List out some key concept of SAS
If you could design your ideal job, what would it look like?
what do you mean by data staging area? : Sas-di
Hi Friends, Am Priya,new to your forum. am looking for Interview questions on SAS Platform Administration. I searched everywhere but I couldn't find them,please can anyone help me with complete interview questions normally everyone will face in the interviews on SAS Administration. am really facing problems in the interviews,am not able to answer any of their questions. I would really appreciate all your help if you can email the complete Interview Questions to priyafeb84@gmail.com Kindly awaiting for your reply with eager
how can you put a "trace" in your program? : Sas programming
which features do you use to check the data validations and errors? : Sas-administrator
Briefly explain input and put function?
what are the softwares and applications that are used most frequently used by sas bi applications developers? : Sas-bi
How do dates work in SAS data?