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 can get the first and last observations in a dataset using Proc SQl?
What is the use of PROC gplot?
how do u validate the program which u have written.
How to get top scorer student from a class-table having different sections A,B, C & D? Each section having same number of students.
What is the difference between match merge and one to one merge?
How do you read in the variables that you need?
explain the difference between alternate key, business key, foreign key, generated key, primary key, retained key and surrogate key ? : Sas-di
Which function is used to count the number of intervals between two sas dates?
Describe the function and untility of the most difficult SAS macro that you have written.
how to read the variables in sas? : Sas-administrator
What is the purpose of the trailing and How would you use them?
what is ae onset date n what is RDS