Answers for "partioning-by-hash"

0

partioning-by-hash

create table bricks_hash (
  brick_id integer
) partition by hash (brick_id) partitions 8;

select table_name, partitioned 
from   user_tables
where  table_name = 'BRICKS_HASH';
Posted by: Guest on June-26-2021

Browse Popular Code Answers by Language