How to enable oracle json type on 12c and 19c?
I tried
CREATE TABLE j_purchaseorder
(id VARCHAR2 (32) NOT NULL PRIMARY KEY,
date_loaded TIMESTAMP (6) WITH TIME ZONE,
po_document JSON);
and got error
ERROR at line 4:
ORA-00902: invalid datatype
I tried both 12c and 19c and got the same error. do I need to install/enable something?