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...

how can u import .csv file in to SAS?tell Syntax?

Answer Posted / chiranjeevi

retreving the data we can use import&infile also.
import:
proc import datafile='external file'
out=<dataset name> dbms=csv replace;
getnames=yes;
proc print data=<dataset name>
run;

infile:
data code;
infile'C:\Documents and Settings\admin\Desktop\chiru.csv';
input<variable list>;
run;

Is This Answer Correct ?    13 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

If you were told to create many records from one record, show how you would do this using array and with proc transpose?

1543


what is sas metadata server? : Sas-di

1154


how does sas handle missing values in functions? : Sas programming

1282


how does sas handle missing values in formats? : Sas programming

1190


What Proc glm does?

1138


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

1389


What is substr function?

1240


Hi, If anyone has base SAS certification dumps, please share.

1925


How are numeric and character missing values represented internally?

1711


why is sas data integration studio important? : Sas-di

1083


what are sas bi dashboard components? : Sas-bi

1228


for whom is sas data integration studio designed? : Sas-di

1060


How do you add a number to a macro variable? : sas-macro

1050


How to limit decimal places for variable using proc means?

1155


Mention some common errors that are usually committed in sas programming.

1103