JSON_ARRAYAGG returns a truncated list of data
I am trying to create a JSON output but it is displayed truncated. Table creation and inserts: create table test(c1 number, c2 varchar2(10), c3 varchar2(100)); begin for i in 1 .. 1000 loop insert into test values (i, 'val_' ||…