Delimited Blob data in oracle
I have got + delimited BLOB data in an oracle table. Data: 2342-34-34+83898oov+4ncjj+jdjjd11kj+20-12-2017 I would like to extract this data and store it in an array Expected output: Array[1] Array[2] Array[3] 2342-34-34 83898oov 4ncjj Do we have any way to achieve this in oracle without extracting data outside DB? Note: Number of delimiter text varies for each record. Oracle Setup : CREATE OR REPLACE TYPE stringlist IS TABLE OF VARCHAR2(4000); / CREATE OR REPLACE TYPE cloblist IS TABLE OF CLOB; / CREATE OR REPLACE FUNCTION blob_to_clob (blob_in IN BLOB) RETURN CLOB AS c_buffer CONSTANT PLS