Search notes:

Oracle: Hash partitioned tables

create table tq84_hash_partition (
  id  number,
  txt varchar2(10)
)
partition by hash (txt) 
partitions 4;


select partition_name from user_tab_partitions where table_name = 'TQ84_HASH_PARTITION';


drop table tq84_hash_partition purge;
Github repository Oracle-Patterns, path: /DatabaseObjects/Tables/Partitions/hash_partitioning.sql

See also

Partitioned tables

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