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 |
Name any two sas spawners? : sas-grid-administration
describe the interaction table in sas di? : Sas-di
Tell me about % include and % eval? : sas-macro
what is the limit of the number of the rows and columns available in the worksheet? : Sas-bi
Which is the best training institute for SAS in hyderabad.
112 Answers Stansys Software Solutions,
What is the role of administrative users? : sas-grid-administration
what is broad cast agent? : Sas-bi
How do you add a prefix to some or all variables in a dataset using a SAS macro?
Code the MEANS to produce output to be used later.
Are you involved in writing the inferential analysis plan? Tables specfications?
What are common programming errors committed in sas
What is the basic syntax of a sas program?