I want to extract the value of Decision using sql from table TRAPTABCLOB having column testclob with XML stored as clob.
Sample XML as below.
Try
SELECT EXTRACTVALUE(xmltype(testclob), '/DCResponse/ContextData/Field[@key="Decision"]') FROM traptabclob;
Here is a sqlfiddle demo