What statement do you code to tell SAS that it is to write
to an external file?

Answer Posted / jothi sankar

_NULL_ statemnet.


Eg:

DATA
_NULL_;
SET MYDATA;
FILE '<FILE-LOCATION>';
PUT var1 var2 var3 ... varn;
RUN;

Is This Answer Correct ?    12 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Tell me about % include and % eval? : sas-macro

678


How is character variable converted into numeric variable and vice versa?

591


what is snowflake schema? : Sas-di

694


what is sas olap server? : Sas-di

685


What are the different servers in sas? : sas-grid-administration

597






what are the categories that sas informats are used to the place the data? : Sas-administrator

611


Describe the function and untility of the most difficult SAS macro that you have written.

1718


why is sas considered self-documenting? : Sas programming

675


do you need to know if there are any missing values? : Sas programming

544


what are several options for creating reports in web report studio? : Sas-bi

626


In SAS explain which statement does not perform automatic conversions in comparisons?

795


what is sas application server? : Sas-di

535


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

2896


What is the difference between match merge and one to one merge?

686


if the Id has more then two transcatiion then show the first observation, IF Id has only two observation then It show both the observation

1162