Skip to main content

But... we already have tools for explain plan

There are already ways to see execution plan

This is very true. And for day to day use, they are more then sufficient.

But sometimes the tools don't show the functions/conditions correctly.
And some details are never present (e.g. in complex plans with multiple materialized subqueries, it's sometimes impossible to determine from which copy of a table/subquery a column comes).

(And out of scope of this series, you may want to see bind values, or to know which line in the plan you are on = which (copy of) table is oracle just reading.)

Examples in this blog are necessarily simple ones; and in such examples we see cases where the added value of such access to execution plan is not very high. But never forget that this can be extended to much more complex cases.

Existing tools

EXPLAIN PLAN

EXPLAIN PLAN is long time with us. The main problem is that it shows plan for a new parse - and this can be different than what a session is actually executing, as it depends on bind types and lengths, NLS settings, and SQL baselines, many optimizer settings... and every version of Oracle introduces more dynamics and adaptability, making it harder and harder to get exactly the same plan.
On the other hand, EXPLAIN PLAN runs "offline" and thus has time to do more parsing of the plan than other approaches, and thus can parse some cases that other ways cannot. E.g. this output of explain plan won't be shown with dbms_xplan:
filter("Q"."PROD_NAME"= (SELECT LISTAGG(TO_CHAR("PROD_ID"),NULL) WITHIN GROUP ( ORDER BY "PROD_ID") FROM "PRODUCTS" "PRODUCTS")) 
But even explain plan fails sometimes:
filter(INTERNAL_FUNCTION("TIME_ID")=TIMESTAMP' 2000-01-01 00:00:00.000000000')
And in other cases (like the multiple subqueries/tables), it simply cannot show the full info, as the plan table does not allow that level of detail.

dbms_xplan

With dbms_xplan, it is easier to get the right plan, as we can specify an existing plan id, or existing cursor.  But it does not parse some of the more complicated cases - for example the first filter from above is shown as:
filter("Q"."PROD_NAME"=)

v$sql_plan

The output is similar to dbms_xplan. What is nice that this is a v$ view... so it should be backed up by a x$ view, and that should have an address in memory, something we should be able to read from the SGA. Let's have a look.

An example SQL

Our example is based on the sample SH schema, with an added table FOOBAR (id number, key varchar2(30)):

SELECT prod_id, key FROM products CROSS JOIN foobar WHERE prod_id in (143,144,id) and id in (1,2,3);

So let's have a look at the v$sql_plan. This is backed by x$kqlfxpl:

select addr, kqlfxpl_oper, kqlfxpl_oopt from x$kqlfxpl where kqlfxpl_sqlid='b4hdxqwy614fa'
ADDR             KQLFXPL_OPER         KQLFXPL_OOPT
---------------- -------------------- -------------------
00007F9F384F2E68 SELECT STATEMENT
00007F9F384F2C10 NESTED LOOPS
00007F9F384F2990 TABLE ACCESS         FULL
00007F9F384F2698 INDEX                FULL SCAN
The important detail is the ADDR. As we've seen in the previous post, SGA base is 0x60_000_000, but e.g the first ADDR is 
0x7F9_F38_4F2_E68, somewhere very, very far. It's also close to 2^48, the size of current CPU address space (64-bit CPUs use 48-bit address space, to save on the address line cost; it's still more than enough). Process stack tends to grow down from the top of process address space. This indicates that this is process' private stack memory.

The truth is that v$sql_plan does not read the plan directly - instead it is using a helper function to first populate a temporary array, and then to show that array. We thus need to go deeper to get the raw, unparsed execution plan.

Next time we will look where the function gets the data from.

Comments

Popular posts from this blog

Filter and access predicates

More than just column projections When we look around for further pointers in the tree nodes, we find more pieces resembling the column projections we have seen so far. With some experimenting, we will find out that these are access predicates and filters. First of all, the location of these pointers is not always the same, it seems that the value at 0x34 is some kind of flag, indicating whether filters and/or access predicates are present, and where. Or whether there is just one, or more of them.  It probably also indicates what other info is present, but I have no idea what info that would be or what each value means. Resembling, but different The data we see as predicates are not columns; after all, a predicate is a condition, not a single column. But the structure is similar to what we have seen with columns, and if we follow pointers further, we eventually build a tree, and some of the leaves are indeed just column projections. After some contemplation, we realize it's...

dbms_alert on RAC

Not long time ago, I came across a usage of dbms_alert to manage running jobs. As the solution implemented must work also for RAC, I wanted to know whether dbms_alert works on RAC across instances. The documentation nor Metalink does not say anything (contrary to dbms_pipe, which does NOT work on RAC). So, if they don't warn, it should work... However, Julian Dyke says, that dbms_alert does not work and is the same as dbms_pipe (sources: http://juliandyke.com/Presentations/Presentations.html#ARoughGuideToRAC , page 17, or Pro Oracle Database 10g RAC on Linux, page 426). You know, never trust anybody, so I conducted a test case (10.2.0.3 on Linux x86_64, VMware ESX server, 2-node RAC): You will need two simultaneous sessions, I mark them with DWH1> and DWH2> here. DWH1> select instance_name from v$instance; INSTANCE_NAME ---------------- DWH1 DWH2> select instance_name from v$instance; INSTANCE_NAME ---------------- DWH2 DWH2> exec dbms_alert.register('TST'); ...

Execution plan rows

The plan As mentioned in previous post, our example is based on the sample SH schema, with an added table FOOBAR (id number, key varchar2(30)): SELECT prod_id, key FROM products CROSS JOIN foobar WHERE prod_id in (143,144,id) and id in (1,2,3); In all reverse engineering, it's good to start with something simple and to know what we to look for. Thus we want to know what the execution plan should look like; and the more unique numbers/ids we can find, the better. It's much easier to look for a number like 0x12fa1893 than for 0x0 or 0x1. The execution plan, obtained using: SELECT * FROM TABLE(DBMS_XPLAN.DISPLAY(null,null,'ALL'));  is I have added the CPU cost from the full detail of the execution plan in  v$sql_plan / x$kqlfxpl. Looking at the numbers, we also have rows (1 and 2 ... not very unique), bytes (34 / 30 / 8 - not bad) and what is not shown here, we also know object ids of the index and the table: 94765 and 92749 (nice). We did not use any...