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 are some good SAS programming practices for
processing very large data sets?

Answer Posted / sibin

Use
1.WHERE Condition
2.DROP KEEP in Set Statement
3.ARRAY
4.Mutually Exclusive Conditions like DO ,DO UNTIL,DO WHILE

Is This Answer Correct ?    16 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is maximum storage capability of SAS?

1482


Explain how you can debug and test your SAS program?

1051


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

3418


how are numeric and character missing values represented internally? : Sas programming

1199


How do you control the number of observations and/or variables read or written?

1297


What is the difference between input and infile statement?

1224


What would you change about your job?

2442


explain what is factor analysis? : Sas-administrator

1172


what are sas bi dashboard components? : Sas-bi

1227


What is the use of the %include statement?

1213


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.

2245


How we can create SAS USER DEFINED CODE?

2148


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

1090


what are the scrubbing procedures in sas? : Sas programming

1323


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

1588