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

Answers were Sorted based on User's Feedback



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

Answer / kishan

1. file and put statements
2. Export Procedure
3. ODS also write the data to an external file

Is This Answer Correct ?    9 Yes 0 No

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

Answer / rishie

By using File and PUT statement you can write into an
external file

Is This Answer Correct ?    4 Yes 0 No

Post New Answer

More SAS Interview Questions

what is the difference between proc report and proc format?

7 Answers   CTS,


How are the analysis data sets structured?

3 Answers  


There is a field containing a date. It needs to be displayed in the format "ddmonyy" if it's before 1975, "dd mon ccyy" if it's after 1985, and as 'Disco Years' if it's between 1975 and 1985. How would you accomplish this in data step code? Using only PROC FORMAT

8 Answers   D&B,


whenever we using the merging through data set merging ,we can get note in log like this "MERGE STATEMENT HAS MORE THAN ONE ONE DATASET BY REPEATED BY VAIABLES" but the output has come in good manner,whenever in in sql(full join) we can get cartion product.so How do overcome this problem in sql?

1 Answers   Accenture,


how do u validate sas program

3 Answers   Accenture,






What is the different between functions and PROCs that calculate the same simple descriptive statistics?

0 Answers   Quintiles,


what is program data vector? : Sas-administrator

0 Answers  


What is the command used to find missing values?

0 Answers  


How can you put a "trace" in your program?

2 Answers   Quintiles,


what are different analysis datasets you created and what are the new variables created

2 Answers   Sciformix,


How would you remove a format that has been permanently associated with a variable? ________________

5 Answers   Quintiles, TCS,


data task; input id date date9. visit; cards; 101 01jan2015 1 101 02jan2015 2 101 06jan2015 3 102 04jan2015 1 102 07jan2015 2 102 12jan2015 3 103 06jan2015 1 103 13jan2015 2 ; run; write a program to find out missing dates between visits by each subject.

1 Answers  


Categories