Search notes:

Oracle tables: PARALLEL clause

create table tq84_parallel_degree_default (
  id    number primary key,
  col_1 varchar2(10) not null,
  col_2 varchar2(10)
)
parallel (degree default);


create table tq84_parallel_16 (
  id    number primary key,
  col_1 varchar2(10) not null,
  col_2 varchar2(10)
)
parallel 16;


select
  table_name,
  degree
from
  user_tables
where
  table_name like 'TQ84%';
Github repository Oracle-Patterns, path: /DatabaseObjects/Tables/parallel/degree-default-16.sql

See also

A table's default Degree of Parallelism (DOP)
Parallel SQL execution

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...', 1759490603, '216.73.216.42', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/objects/tables/parallel(63): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78