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 / pratik

proc import
datafile='D:\Dropbox\SAS\testfile1.txt'
out=data_imported dbms=dlm replace;
getnames=NO;
run;

proc export
data=data_imported
outfile='D:\Dropbox\SAS\testfile2.txt' replace;
run;

Is This Answer Correct ?    7 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

how to read the variables in sas? : Sas-administrator

1070


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

1155


what is sas metadata server? : Sas-di

1153


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

1116


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

1615


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

1389


If a variable contains letters or special characters, can it be numeric data type?

1279


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;

2551


How can you create a macro variable with in data step? : sas-macro

1087


What are the different types of sas functions?

1359


Mention what is PROC in SAS?

1110


Compare sas with other data analytics tools.

1093


How do you convert basic cube to transaction cube and transaction cube to basic cube?

2286


what is the difference between: x=a+b+c+d; and x=sum (of a, b, c ,d);? : Sas programming

1180


What are the differences between sum function and using “+” operator?

1155