Other News

Community

Oracle SQL Tuning Example

(Michael McLaughlin) Somebody wanted a post on SQL statement tuning, so here it is. SQL statement tuning requires that you understand table definitions, constraints, and indexes plus how they interact through joins before you can begin tuning. Oracle presents some of the most advanced tools for tuni

Community

Selection Revisited

(Jim Mischel) In Selecting the Top N Items from a Group, I showed how to use a binary heap to efficiently identify the N largest items from a large collection. Using a binary heap is much faster than the naive method, but it’s not the only way to do it and not necessarily the fastest, either.