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

If a variable contains only numbers, can it be a character data type?

610


i have a dataset with 100 obs i want to generate title from 20th obs onwards with total observations. that should contain 100 obs.dont use firstobs and dnt split the data. use dataset block or proc report? how can we genarate;

1959


How does SAS handle missing values in: assignment statements, functions, a merge, an update, sort order, formats, PROCs?

1093


what is sas application server? : Sas-di

533


What is interleaving in SAS?

668






What are the default statistics for means procedure?

638


for what purpose would you use the retain statement? : Sas programming

576


What are the implications?

1179


Describe crosslist option in tables statement?

708


What is the order of application for output data set options, input data set options and SAS statements?

1078


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

3056


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

2081


How to specify variables to be processed by the freq procedure?

612


what is the difference between unique key and primary key? : Sas-di

589


how do you want missing values handled? : Sas programming

530