I have an SQL statement like this-
select utl_encode.utl_encode.base64_encode(IMAGE1)
from IPHONE.accidentreports
where "key" = 66
But when I run it I get this error-
ORA-00904: "UTL_ENCODE"."UTL_ENCODE"."BASE64_ENCODE": invalid identifier
00904. 00000 - "%s: invalid identifier"
*Cause:
*Action:
Error at Line: 2 Column: 8
I want to convert my BLOB object into BASE64. How could it be done?
utl_encode.utl_encode- Whyutl_encodetwice?utl_encodeis a Package, and unless you have a DB schema namedutl_encodethis-utl_encode.base64_encodeis the correct syntax.