Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Major issues in SAS projects 1

Status
Not open for further replies.

dimpu79

Programmer
May 8, 2004
8
0
0
US
Hi all,

I just started learning SAS/BASE and someother basic modules.I just want to know if you guys faced any major issues(technical/performance) issues in your projects, if so how did you solve those issues?.

Thanks
 
Yep, 1 major performance issue we have occasionally. SAS allows you to treat an oracle table as a SAS dataset, allowing you to access it using a datastep rather then using a Proc SQL step and a "Connect to Oracle" statement.
However, it is worth bearing in mind that if you do this, the process extracts the entrire table before processing it, ignoring all where statements until afterwards. This means that if you are extracting say a small number of accounts from a view which touches several tables, you can find it extremely slow going as the entire table will be extracted, then the where statement applied next. In these cases it is best to use the Proc SQL step rather than a datastep. It can make a difference of about 20 minutes on some of our views.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top