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 / learning sas
FILENAME EXTERNAL1 'PATH';
FILENAME EXTERNAL2 'PATH';
Proc import DATAFILE=EXTERNAL1
OUT=XYZ REPLACE;
GETNAMES=YES;
RUN;
DATA _NULL_;
FILE EXTERNAL2;
SET XYZ;
PUT _ALL_;
RUN;
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / sas developer
DATA _NULL_;
INFILE 'C:FILESINPUT.TXT' MISSOVER TRUNCOVER;
INPUT BLOCK $100.; /* This is length of the record. Change to suit your file*/
FILE 'C:FILESOUTPUT.TXT';
PUT BLOCK;
RUN;
| Is This Answer Correct ? | 1 Yes | 0 No |
How do you debug macros?
what is the different between functions and procs that calculate the same simple descriptive statistics? : Sas programming
What system options would you use to help debug a macro? : sas-macro
what has been your most common programming mistake? : Sas programming
How to display duplicate observations in data?
Hi Jeevan/Akshara I have tried to contact SASI Vats for latest Advanced SAS Programming Certification Dumps (A00-212) but have not got any response. I would highly and gratefully appreciate your assistance in this regard. If you guys have access to this, would you be kind enough to forward it to me ? I would abide by all the terms you have for this. Please, note my email id: upretigopi@yahoo.com Preti Sharma
Do you need to know if there are any missing values?
What is the difference between proportion and average?
What do the SAS log messages "numeric values have been converted to character" mean?
how many types of prompts are there? : Sas-bi
What are the rows present in protocol Violation table?
2 Answers Accenture, Quintiles,
what are all the reports you generated in your recent project?
0 Answers Accenture, Quintiles,