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

DATA step copies records from the input file to the output
file without creating any SAS variables:

data _null_;
/*To read the external taw data file*/
infile 'file-specification-1';
input var1 var2 $ var3;
/*To write the external raw data file*/
file 'file-specification-2';
put var1 var2 var3;
run;

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the general format of function in sas? : sas-grid-administration

1028


What’s the difference between var b1 – b3 and var b1 — b3?

1437


Give some ways by which you can define the variables to produce the summary report (using proc report)?

1132


Explain the special input delimiters used in sas programming.

1042


how to do user inputs and command line arguments in sas?

3086


what is slowly changing dimension? : Sas-di

1183


how do you debug and test your sas programs? : Sas programming

1169


What is the use of divide function?

1115


Which command is used to save logs in the external file?

1147


What does P-value signify about the statistical data?

1400


please can you tell me that in companies sas work are doing by through sas coding or sas wizard ??

2135


what is the primary data source for the wrs? : Sas-bi

1332


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

1143


Do you know the features of sas?

1086


what is information maps?

2277