Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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 you could design your ideal job, what would it look like?

2981


How might you use MOD and INT on numeric to mimic SUBSTR on character Strings?

1403


What are the different versions of sas that you have used until now? : sas-grid-administration

1389


what is SAS OPTIMIZATION?

2350


how many display types available in sas bi dashboard? : Sas-bi

1141


Explain input and put function?

1185


What is the role of unrestrictive users? : sas-grid-administration

1073


Where do you use proc means over proc freq?

1187


Differences between where and if statement?

1153


How do you connect the desktop application to metadata server? : sas-grid-administration

1144


What are common programming errors committed in sas

1183


what are the categories that sas informats are used to the place the data? : Sas-administrator

1095


what is operational data and operational system? : Sas-di

1155


Explain what is SAS informats?

1132


What is the use of stop statement?

1111