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 the use of sas management console? : Sas-di
What are all the problems you faced while validating tables and reports?
0 Answers Accenture, Quintiles,
how does sas handle missing values in: assignment statements, functions, a merge, an update, sort order, formats, procs? : Sas programming
Mention how to limit decimal places for the variable using proc means?
where to use sas business intelligence? : Sas-bi
Explain why double trailing @@ is used in input statement?
Name few SAS functions?
if i having variables named a b c d e f ,how to find total of each variable ????give syntax...??
Name and describe three SAS functions that you have used, if any?
How we will Developing new reports Using Data step programming and Macros ?
How do you specify the number of iterations and specific condition within a single do loop?
how we can create optional or required parameters in SAS macro...