I am using a query to extract the standard output of a job:
select jobrun_id, dbms_lob.substr( jobrun_output, 4000, 1 )
from tidal.joboutput
where jobrun_id = 686361;
The query returns output in an XML format:
<TESXOUTPUT><MSG>Job output data is in XML format. To view job output upgrade your Client to latest version.</MSG><OUTPUT COMP="Y" RUN="1">eJzFVltv2zYUftevOBhQpB1CxXZuDQMXkC9...
How can I translate this output into readable text?
Thanks.