CLOB to BLOB using PLSQL Ashish Sahay February 29, 2020 Create function to convert the CLOB to BLOB CREATE OR REPLACE FUNCTION clob_to_blob (i_clob_text IN CLOB) RETURN BLOB IS /* ... Show More
Blob to Clob using DBMS_LOB Ashish Sahay February 29, 2020 Create function to convert the blob content to clob CREATE OR REPLACE FUNCTION blob_to_clob (i_blob_content IN BLOB) RETURN CL... Show More