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

DATA _NULL_; 
INFILE 'C:FILESINPUT.TXT' MISSOVER TRUNCOVER; 
INPUT BLOCK $100.; /* This is length of the record. Change to suit your file*/
FILE 'C:FILESOUTPUT.TXT';
PUT BLOCK;
RUN;

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what is slowly changing dimension? : Sas-di

1183


Define run-group processing?

1095


Which function is used to count the number of intervals between two sas dates?

1189


what is the limit of the number of the rows and columns available in the worksheet? : Sas-bi

1135


In ARRAY processing, what does the DIM function do?

1230


What was the last computer book you purchased? Why?

2418


For clinical entire study how many tables will create approx?

2018


Enlist the functions performed by sas.

1189


Difference between informat and format?

1141


How would you identify a macro variable? : sas-macro

1062


what is intially documentation in sas?

5124


Explain the use of proc print and proc contents?

1013


Of all your work, where have you been the most successful?

4715


How we can call macros with in data step? : sas-macro

1175


Give some examples where proc report’s defaults are same as proc print’s defaults?

1160