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

What statement do you code to tell SAS that it is to write
to an external file? What statement do you code to write the
record to the file?

Answer Posted / kishan

1. file and put statements
2. Export Procedure
3. ODS also write the data to an external file

Is This Answer Correct ?    9 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Tell e how how dealt with..

2263


What are the parameters of scan function?

1218


what are the benefits of data integration? : Sas-di

1174


What is the good sas programming practices for processing large data sets?

1176


If you need the value of a variable rather than the variable itself what would you use to load the value to a macro variable? : sas-macro

1118


data data1; input dt account; format dt date9.; cards; 1745 1230 1756 1120 1788 1130 1767 1240 ; data data2; input startdt enddt total; format startdt date9. enddt date9.; cards; 1657 1834 12300 1557 1758 16800 1789 1789 12300 1788 1345 12383 1899 1899 13250 ; proc sql; create table data3 as select * from data1 as x left join data2 as y on x.dt>=y.startdt and x.dt<=y.enddt; quit; Here, we are getting cartision product. But,I want left join report consisting of this program. It should not get duplicate values. you can modify the program also.

2244


Mention what is the difference between nodupkey and nodup options?

1058


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

1143


How would you determine the number of missing or nonmissing values in computations?

1128


Explain the difference between using drop = data set option in set and data statement?

1192


Can you execute macro within another macro? If so, how would sas know where the current macro ended and the new one began? : sas-macro

1255


how will you location sas platform applications available from web browser? : Sas-bi

1113


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;

2550


How do dates work in SAS data?

1227


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

1049