Search notes:

Oracle PLAN_TABLE: column DISTRIBUTION

The value of the column distribution in a plan table lists an operation's distribution method in an execution plan of a parallel statement.
This value is only relevant for the plan operation PX SEND. Thus, the following query returns 0:
select
   count(*)
from
   v$sql_plan
where
   distribution is not null and
   operation <> 'PX SEND'
;
In records where distribution is not null (i. e. in PX SEND records), the value of distribution is equal to that of options: the following query return 0:
select
   count(*)
from
   v$sql_plan
where
   distribution is not null and
   nvl(options, 'x') <> distribution
;
select
-- count(*),
   distribution
from
   v$sql_plan
where
   distribution  is not null
group by
   distribution
order by
   distribution
;
--
-- BROADCAST
-- HASH
-- HASH (BLOCK ADDRESS)
-- HASH (NULL RANDOM)
-- QC (ORDER)
-- QC (RANDOM)
-- RANGE
-- ROUND-ROBIN

Index

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:78 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(78): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/developm...', 1758192001, '216.73.216.150', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/SQL/statement/verbs/explain/plan_table/columns/distribution(76): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78