create table T(
id number,
val1 int,
val2 int,
val3 int generated always as (val1 + val2) virtual,
resume xmltype,
info xmltype,
test sys.xmltype)
xmltype column resume
store as clob
xmltype column info
store as clob
xmltype column test
store as clob
id number,
val1 int,
val2 int,
val3 int generated always as (val1 + val2) virtual,
resume xmltype,
info xmltype,
test sys.xmltype)
xmltype column resume
store as clob
xmltype column info
store as clob
xmltype column test
store as clob