why can nvarchar2 column only specify half the max size (32767)?
alter table test add (n_desc nvarchar2 (16384)); --> error
alter table test add (n_desc nvarchar2 (16383)); -->OK
Is it due to nvarchar2 uses two bytes?
(19c max_string_size=extended)
0