In the paper SQL Profiles (page 22) I described the data dictionary tables where the hints belonging to SQL profiles are stored. For example, with the following query it is possible to display the hints associated to the SQL profile named opt_estimate.
SQL> SELECT attr_val 2 FROM sys.sqlprof$ p, sys.sqlprof$attr a 3 WHERE p.sp_name = 'opt_estimate' 4 AND p.signature = a.signature 5 AND p.category = a.category; ATTR_VAL --------------------------------------------------------------------------------- OPT_ESTIMATE(@"SEL$1", JOIN, ("T"@"SEL$1", "CH"@"SEL$1"), SCALE_ROWS=276.7754079) OPT_ESTIMATE(@"SEL$1", TABLE, "CH"@"SEL$1", SCALE_ROWS=40.15499105)
As of Oracle Database 11g the previous query can no longer be used. In fact, the data dictionary has been changed. The tables SQLPROF$ and SQLPROF$ATTR no longer exist. As of Oracle Database 11g the information is stored in the tables SQLOBJ$ and SQLOBJ$DATA. The following query shows how to query the new tables. Note that since hints are stored in XML format, a conversion is necessary to have a readable output.
SQL> SELECT extractValue(value(h),'.') AS hint 2 FROM sys.sqlobj$data od, sys.sqlobj$ so, 3 table(xmlsequence(extract(xmltype(od.comp_data),'/outline_data/hint'))) h 4 WHERE so.name = 'opt_estimate' 5 AND so.signature = od.signature 6 AND so.category = od.category 7 AND so.obj_type = od.obj_type 8 AND so.plan_id = od.plan_id; HINT --------------------------------------------------------------------------------- OPT_ESTIMATE(@"SEL$1", TABLE, "CH"@"SEL$1", SCALE_ROWS=39.20843548) OPT_ESTIMATE(@"SEL$1", JOIN, ("T"@"SEL$1", "CH"@"SEL$1"), SCALE_ROWS=281.2054138) OPTIMIZER_FEATURES_ENABLE(default)
Hi Christian
In grid control if we look at sql tuning advisor recommendations there is an option to show recommended execution plan and original plan. Do you know if with DBMS API is possible to obtain these outputs?
Thank you
Peter
Hi Peter
Yes, when you generate the report with dbms_sqltune.report_tuning_task both execution plans are shown. In my book (pages 268-270) there is an example. If you don’t own a copy, you can preview it through Google Books.
Cheers,
Chris
I just got your book yesterday ;-)
Will have a look
Thanks!
Peter
[…] surprises it’s the baseline data. See also: Kerry Osborne – Do SQL Baselines Use Hints/ Christian Antognini – SQL Profiles in the Data Dictionary Christian Antognini – Troubleshooting Oracle […]
[…] 转自:http://www.antognini.ch/2008/08/sql-profiles-in-data-dictionary/ […]
[…] than that. However once I had the correct keyword to search on, Google pointed me at a blog by Christian Antognini that gave the exact query I was looking for. How he got to that information I do not know, probably […]