| select cksm from ( select order_id, checksum ( product_id || quantity || ... ) cksm from order_items group by order_id ) group by cksm having count (*) > 1
| select cksm from ( select order_id, checksum ( product_id || quantity || ... ) cksm from order_items group by order_id ) group by cksm having count (*) > 1;
| blogs.oracle.com/sql www.youtube.com/c/TheMagicOfSQL @ChrisRSaxon Slide about access for plans? But I want to stop changes! Ryan McGuire / Gratisography
| create blockchain table blockch ( c1 int, c2 int, … ) no drop until 16 days idle no delete until 16 days after insert hashing using "SHA2_512" version "v1"
| delete blockch; ORA-05715: operation not allowed on the blockchain table update blockch set c1 = 1; ORA-05715: operation not allowed on the blockchain table
| alter table blockch add cnew int; ORA-05715: operation not allowed on the blockchain table rename blockch to blockch_old; ORA-05715: operation not allowed on the blockchain table
| create blockchain table blockch ( block_id int primary key, json_data blob not null ) no drop until 16 days idle no delete until 16 days after insert hashing using "SHA2_512" version "v1"
| create blockchain table blockch ( block_id int primary key, json_data json not null ) no drop until 16 days idle no delete until 16 days after insert hashing using "SHA2_512" version "v1"