how can u create zero observation dataset?
Answer Posted / din
data a ;
set b(obs=0);
run;
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
what are the best practices to process the large data sets in sas programming? : Sas-administrator
what is data access? : Sas-di
What commands are used in the case of including or excluding any specific variables in the data set?
describe the interaction table in sas di? : Sas-di
What does the trace option do?
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 is the difference between: x=a+b+c+d; and x=sum (of a, b, c ,d);? : Sas programming
What are the functions which are used for character handling functions?
How does SAS handle missing values in: assignment statements, functions, a merge, an update, sort order, formats, PROCs?
how to generate the test data in sas without input data? : Sas-administrator
what is business intelligence? : Sas-bi
how many display types available in sas bi dashboard? : Sas-bi
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
Describe what are the different levels of administrative users in sas? : sas-grid-administration
What is the use of function Proc summary?