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 |
Explain the difference between nodup and nodupkey options?
Why double trailing @@ is used in input statement?
I need level 2 to 5 sas using companies in india
What data sets do you need to produce the report?
Describe the ways in which you can create macro variables?
SAS using companies in chennai
Describe crosslist option in tables statement?
Will it bother you if the guy at the next desk times the frequency and duration of your bathroom or coffee breaks on the grounds that ?you are getting paid twice as much as he is??
Does anybody have SAS Training manual or documentation or can you refer me any book to have better understanding on SAS. I am fresher to SAS tool. (Ready to pay)
Name statements that are execution only?
what is in stream data in SAS?
which domain is better in sas? clinical trails or banking