Explore >> Select a destination


You are here

tonyhasler.wordpress.com
| | alexzeng.wordpress.com
7.7 parsecs away

Travel
| | Outline is the oldest way to fix SQL plan. It based on hints like use_nl etc. It's a road map. It still can be used in 11.2 although oracle said it's deprecated. Finally, it is free. SQL profile is trying to impact CBO by adding cost estimation hints. You need pay extra money to use...
| | hourim.wordpress.com
7.6 parsecs away

Travel
| | The last Jonathan Lewis post on RAC Planswhich finished by the following phrases: "If you're going to hard-code hints into a query then take a look at the outline it generates when it does the right thing, and that will tell you about the 15 or so hints you've missed out. (Better still, consider generating...
| | dioncho.wordpress.com
4.7 parsecs away

Travel
| | One of my colleagues sent following test case, of which he couldn't control the join order with hints. 1. Create objects - table t1, t2 and t3 2. Now Let's set the join order as T1->T2->T3, using global hints convention. But it seems that Oracle does not work as expected. It really seems that the...
| | chandlerdba.com
42.7 parsecs away

Travel
| In my previous post, I wrote about the time I made a mistake specifying a hint via a SQL Patch, meaning it "didn't work". This leads to an understanding about the classification of hints - some hints are used for the Optimizer/CBO, but other hints have different reasons for being used. For example APPEND is...