How Does Oracle view the execution plan of an SQL statement based on the dynamic performance view?

Source: Internet
Author: User


1. Authorize a user to view sys. v $ SQL _plan permission 2. create a plan_table-like view SQL> create or replace view dynamic_plan_table 2 as 3 select rawtohex (address) | '_' | child_number statement_id, 4 sysdate timestamp, operation, options, object_node, 5 object_owner, object_name, 0 object_instance, 6 optimizer, search_columns, id, parent_id, position, 7 cost, cardinality, bytes, other_tag, region, 8 partition_stop, partition_id, other, dist Ribution, 9 cpu_cost, io_cost, temp_space, access_predicates, 10 filter_predicates www.2cto.com 11 from v $ SQL _plan; the view has been created. 3. View execution plan SQL> select plan_table_output 2 from table (dbms_xplan.display 3 ('dynamic _ plan_table ', 4 (select rawtohex (address) | '_' | child_number x 5 from v $ SQL where SQL _text = 6 'select * from user_tables '), 7 'serial') 8/PLAN_TABLE_OUTPUT partition tables | Id | Operation | Name | Rows | Bytes | Cost (% CPU) | percent | 0 | select statement ||| 703 (100) | * 1 | hash join | 2513 | 5700K | 703 (7) | 2 | fixed table full | X $ KSPPCV | 100 | 196K | 0 (0) | 3 | merge join cartesian | 2513 | 755K | 703 (7) | * 4 | hash join outer | 2513 | 620K | 661 (1) | * 5 | hash join right outer | 2513 | 547K | 473 (2) | 6 | table access full | USER $ | 84 | 1428 | 3 (0) | PLAN_TABLE_OUTPUT www.2cto.com route | * 7 | hash join outer | 2513 | 505K | 470 (2) | * 8 | hash join | 2513 | 485K | 415 (1) | 9 | table access full | TS $ | 7 | 133 | 4 (0) | * 10 | hash join outer | 2513 | 439K | 410 (1) | 11 | nested loops || 248 5 | 325K | 352 (1) | * 12 | table access full | OBJ $ | 3142 | 110K | 236 (2) | * 13 | table access cluster | TAB $ | 1 | 98 | 1 (0) | * 14 | index unique scan | I _OBJ # | 1 | 0 (0) | 15 | table access full | SEG $ | 7092 | 311K | 58 (0) | 16 | index fast full scan | I _OBJ1 | 69116 | 539K | 54 (0) | 17 | index fast full scan | I _OBJ2 | 69116 | 2024K | 187 (0) | PLAN_TABLE_OUTPUT ------------------------------- ------------------------------------------- | 18 | buffer sort | 1 | 55 | 516 (10) | * 19 | fixed table full | X $ KSPPI | 1 | 55 | 0 (0) | inclupredicate Information (identified by operation id): --------------------------------------------------- 1-access ("KSPPI ". "INDX" = "KSPPCV ". "INDX") 4-access ("T ". "BOBJ #" = "CO ". "OBJ # ") 5-access (" CX ". "OWNER #" = "CU ". "USER #") 7-access ("T ". "DATAOBJ #" = "CX ". "OBJ #") PLAN_TABLE_OUTPUT ------------------------------------------------------------------------------ 8-access ("T ". "TS #" = "TS ". "TS #") 10-access ("T ". "FILE #" = "S ". "FILE #" AND "T ". "BLOCK #" = "S ". "BLOCK #" AND "T ". "TS #" = "S ". "TS #") www.2cto.com 12-filter ("O ". "OWNER #" = USERENV ('schemaid') and bitand ("O ". "FLAGS", 128) = 0) 13-f Ilter (BITAND ("T ". "PROPERTY", 1) = 0) 14-access ("O ". "OBJ #" = "T ". "OBJ #") 19-filter ("KSPPI ". "KSPPINM" = '_ dml_monitoring_enabled') Note ----- PLAN_TABLE_OUTPUT Layout-'dynamic _ PLAN_TABLE 'is old version has 45 rows selected. From the ghostgant Column

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.