I need to INSERT JSON data into the Oracle DB table BLOB column, also I need to SELECT the BLOB column value from the table?
This is my Query to INSERT:
INSERT INTO table_Name values('Test','test1',UTL_RAW.cast_to_raw ({"JSON data"}))
How can I SELECT? Also When inserting the large JSON object it's throwing Error : "PL/SQL: numeric or value error: raw variable length too long"