I have a JSON document column in Oracle DB table. The JSON column structure is as follows:
{
"C1":1.1,
"C2":1.2,
"C3":1.3,
"C4":1.4,
"C5":1.5,
"C6":1.6
}
Keys are some variables and value is amount which can be very big. Now, since the document is growing and we can have around 1000 key-value there is possibility of document exceeding 32767 bytes. Is there a way to split this document after say 60 key-value. So, first 60 key-value in one doc, next 60 in another doc and so on..