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 / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what is metadata? : Sas-bi

602


what is program data vector? : Sas-administrator

617


Describe a time when you were really stuck on a problem and how you solved it?

2207


what is the difference between nodup and nodupkey options? : Sas programming

625


I am preparing SAS Certified Advanced Programmer for SAS 9 in 2014. If anybody has the latest dumps for this exam, please mail me at dhiman.mukherjee@gmail.com

2266






what are sas/access and sas/connect? : Sas programming

550


What is the difference between %put and symbolgen? : sas-macro

675


how do you pull data from equifax?tell me the process?

1384


How can you create a macro variable with in data step? : sas-macro

578


Hi, If anyone has base SAS certification dumps, please share.

1390


Explain append procedure?

636


what is the use of proc sql? : Sas programming

600


what is sas metadata server? : Sas-di

595


what are validation tools that are used in sas? : Sas-administrator

593


what is data access? : Sas-di

611