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?
Answer Posted / 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 |
Post New Answer View All Answers
What is the purpose of trailing @ and @@? How do you use them?
What are types of transport files?
How to test the debugging in sas?
how many types prompting framework can be broken down to? : Sas-bi
how can you put a "trace" in your program? : Sas programming
Mention sas system options to debug sas macros.
What areas of SAS are you most interested in?
What is the role of administrative users? : sas-grid-administration
describe the interaction table in sas di? : Sas-di
describe how to adjust the performance of data integrator? : Sas-di
For clinical entire study how many tables will create approx?
How are numeric and character missing values represented internally?
How do you debug and test your SAS programs?
Describe 5 ways to do a “table lookup” in SAS?
What are the default statistics that proc means produce?