Name statements that function at both compile and execution
time.

Answer Posted / radhika

DATA is the statement that function at both compile and
execution time.

Is This Answer Correct ?    21 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to import multiple xls files into sas. Out of those files, how to get different values from a single variable and how to find number of rows per value type? We can do this using group by for one xls file with proc sql. Was wondering how I can achieve this for multiple files at the same time. Any ideas?

2577


What are the difficulties u faced while doing vital signs table or dataset?

2154


What are all the problems you faced while validating tables and reports?

3213


How do you specify the number of iterations and specific condition within a single do loop?

824


I have a SCD Type 2 Dimention for Location In which A Sales Office in Having two Surrogate Keys just because of the change in it's Sales Group. SKey SalesGroup Sales Office BeginDate EndDate 280 SG1 SO1 01APR2000 01APR2010 281 SG2 SO1 02APR2010 31MAR2999 Now while loading the Fact, the Lookup ir returning SKey 280 for records before and after 01APR2010. I am not able to give WHERE condition in the Lookup Properties (TranDate between BeginDate and EndDate). Please help.

1910


what is hierarchy flattening? : Sas-di

818


What is the maximum and minimum length of macro variable

901


What would be the result of the following SAS function (given that 31 Dec, 2000 is Sunday)?

912


what are the considerations when picking a SAS/STAT procedure?

3109


what are the benefits of data integration? : Sas-di

737


How will you generate test data with no input data?

794


what is null hypothesis? why do you consider that?

2625


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.

2009


Mention sas system options to debug sas macros.

887


how do you test for missing values? : Sas programming

776