CLOB Prozedur

PROCEDURE P_CLOB
  IS
  v_clob clob;
BEGIN
  select text into v_clob
  from XL_TEst
  where ind = 243;
  dbms_output.put_line(v_clob);
END;

Ergebnis:
Ein wirklich langer Text, den ich da schreib.