sql >> Base de Datos >  >> RDS >> Oracle

convertir oracle blob a tipo xml

select
XMLType( BLOB_COLUMN,
         1 /* this is your character set ID.
                   1 == USASCII */
       ) as XML
from my_table;