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 scheduling and how will u implement it. In scheduling 5 jobs r running if there is an error occured at 3rd job and how will u check and waht necessary steps will u take not to repeat the same mistake

2363


What is program data vector (pdv)?

1276


what are several options for creating reports in web report studio? : Sas-bi

1143


explain what is data set in sas? : Sas-administrator

975


how does sas handle missing values in a merge? : Sas programming

1032


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

999


How substr function works in sas?

1211


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

1528


How to import multiple xls files into sas. Out of those files, how to get different values from a single variable and how to find number of rows per value type? We can do this using group by for one xls file with proc sql. Was wondering how I can achieve this for multiple files at the same time. Any ideas?

2919


what are input dataset and output dataset options? : Sas programming

1093


how to generate the test data in sas without input data? : Sas-administrator

1119


how to create the AE dataset by using SDTMIG specifications and SAP plan by using UNIX platform?

2745


what is the basic structure sas administrator? : Sas-administrator

997


what is hierarchy flattening? : Sas-di

1071


what are the considerations when picking a SAS/STAT procedure?

3365