If reading an external file to produce an external file,
what is the shortcut to write that record without coding
every single variable on the record?
Answers were Sorted based on User's Feedback
Answer / durga g
DATA step copies records from the input file to the output
file without creating any SAS variables:
data _null_;
infile file-specification-1;
file file-specification-2;
input;
put _infile_;
run;
| Is This Answer Correct ? | 6 Yes | 1 No |
Answer / ganesh
by writing Put _all_; is the easy option to produce an
external file.
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / prakash hullathi
DATA step copies records from the input file to the output
file without creating any SAS variables:
data _null_;
/*To read the external taw data file*/
infile 'file-specification-1';
input var1 var2 $ var3;
/*To write the external raw data file*/
file 'file-specification-2';
put var1 var2 var3;
run;
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / jothi sankar
PUT _ALL_;
Eg:
DATA
_NULL_;
SET MYDATA; --> is got from external input file
FILE OFILE<is having output file path>;
PUT _ALL_; --> is for writing values with variables
PUT (_ALL_) (+0); --> is for writing only values
RUN;
| Is This Answer Correct ? | 0 Yes | 1 No |
what is TAB delimiter? explain about it? what will you do to get TAB delimiter?
What are the rows present in protocol Violation table?
2 Answers Accenture, Quintiles,
How would you include common or reuse to be processed along with your statements?
What techniques and/or PROCs do you use for tables?
I have a dataset with variables empid and doj how to calculate retirement age?
What procedure you used to calculate p-value?
2 Answers Accenture, Quintiles,
What is the difference between %put and symbolgen? : sas-macro
How does the internal authentication work in sas? : sas-grid-administration
Describe a time when you were really stuck on a problem and how you solved it?
what versions of sas have you used (on which platforms)? : Sas programming
If you need the value of a variable rather than the variable itself what would you use to load the value to a macro variable? : sas-macro
Name and describe three SAS functions that you have used, if any?