SQL Developer store procedure insert json file to blob code example
Example: SQL Developer store procedure insert json file to blob
CopyINSERT INTO my_table (json_doc)
VALUES (UTL_RAW.convert(UTL_RAW.cast_to_raw('{....}'),
'AL32UTF8',
'WE8MSWIN1252'));