How to combine multiple rows into a single string in Oracle
This was the question in my mind that how to concatenate multiple rows into single column. We can do with built-in function called ‘listagg’.This is the example of the code
Discover more about Jun Kim
This was the question in my mind that how to concatenate multiple rows into single column. We can do with built-in function called ‘listagg’.This is the example of the code
DBMS_LOB.GetLength returns the number of characters (bytes) in the CLOB/BLOB column. SELECT DBMS_LOB.GetLength(“BlobColum”)/1024/1024 AS SizeMB FROM MY_SCHEMA.MY_TABLE_WITH_BLOB_CLOB