Change xmltype column to nologging
I am using 19c database. currently xmltype column is logging
DDL:
CREATE TABLE MDATA
(
FILINGID NUMBER C
IDENTIFYINGINFO SYS.XMLTYPE
)
XMLTYPE IDENTIFYINGINFO STORE AS SECUREFILE BINARY XML (
TABLESPACE LOB_03
ENABLE STORAGE IN ROW
CHUNK 16384
NOCACHE
LOGGING
STORAGE (
INITIAL 208K
NEXT 1M
MINEXTENTS 1
MAXEXTENTS UNLIMITED
PCTINCREASE 0
BUFFER_POOL DEFAULT
));
I want to change the IDENTIFYINGINFO column to nologging.
I tried following but did not work. Any idea?
alter table MDATA modify lob (IDENTIFYINGINFO)(nocache nologging)
ORA-00904: "IDENTIFYINGINFO": invalid identifier
alter table MDATA modify (IDENTIFYINGINFO xmltype) nocache nologging
ORA-22859: invalid modification of columns