Difference between revisions of "SQL - Encode/decode function (base64)"

From GUILLARD WIKI
Jump to navigation Jump to search
Line 6: Line 6:
<code>SELECT UTL_RAW.cast_to_varchar2(</code><br/>
<code>SELECT UTL_RAW.cast_to_varchar2(</code><br/>
&nbsp;&nbsp;<code>UTL_ENCODE.base64_encode(</code><br/>
&nbsp;&nbsp;<code>UTL_ENCODE.base64_encode(</code><br/>
&nbsp;&nbsp;<code>UTL_RAW.cast_to_raw('Surf the world, travel & eat as much as u can... xo xo T.')))</code><br/>
&nbsp;&nbsp;<code>UTL_RAW.cast_to_raw('Surf the world, travel & eat as much as u can... xo xo T.'))) "42"</code><br/>
<code>FROM dual;</code><br/>
<code>FROM dual;</code><br/>



Revision as of 14:00, 23 August 2016

set define off;

- Encode
SELECT UTL_RAW.cast_to_varchar2(
  UTL_ENCODE.base64_encode(
  UTL_RAW.cast_to_raw('Surf the world, travel & eat as much as u can... xo xo T.'))) "42"
FROM dual;


- Decode
SELECT UTL_RAW.cast_to_varchar2(
  UTL_encode.base64_decode(
  UTL_RAW.cast_to_raw('U3VyZiB0aGUgd29ybGQsIGxvdmUgdGhlIHdvbWVuLCBlYXQgYXMgbXVjaCBhcyB1IGNhbi4uLiB4byB4byBULg=='))) "42"
FROM dual;