Name statements that are execution only?

Answer Posted / dupe

Data set option :
Data new(keep=age race gender);
set old;
run;

Data set statemnet:
Data new;
set old;
drop age race and gender;
run;

Is This Answer Correct ?    0 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why and when do you use proc sql?

757


Have you ever used the SAS Debugger?

1203


what is data governance? : Sas-di

621


What is the basic structure of a sas program?

594


how sas deals with business intelligence? : Sas-bi

581






In ARRAY processing, what does the DIM function do?

707


What is the difference between where and if statement?

619


Differentiate between sas functions and sas procedures.

637


What are the difference between ceil and floor functions in sas?

704


explain the difference between proc means and proc summary?

668


I have a dataset concat having variable a b & c. How to rename a b to e & f?

577


How to convert a numeric variable to a character variable?

628


What do the sas log messages “numeric values have been converted to character” mean? What are the implications?

712


what is broad cast agent? : Sas-bi

593


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.

1694