Useful SQL*Plus headers
Dino eats frog
Oracle with Active Record
When is he free?
Gentle dive into analytic functions
« Does Murali throw?
» Updating properties of objects
Last week, I worked on some one else’s code to "clean up, speed up and make it work". This was an application written in ASP (using VBScript) with Oracle 8i database. I thought I’ll record my findings here so that when I grow old, I can come back and look at it!
FROM orderlines, orders
instead of the basic instinct to write it as FROM orders, orderlines
.WHERE orders.order_date=sysdate AND orderlines.order_date = sysdate
instead of WHERE orders.order_date=sysdate AND orderlines.order_date = orders.order_date
I wrote about working on this last week too.
jfdskf