So on 11g I can execute the following plsql without any problems:
DECLARE
lob1 CLOB;
BEGIN
SELECT e.xml_col.getClobVal() INTO lob1 FROM "XML"."XML_TABLE" e WHERE KEY_COL=3 ;
DBMS_LOB.APPEND(lob1, 'is a test node</test>');
END;
But on 9i the same code results in a ORA-22275: invalid LOB locator specified error.
Any ideas why that would be?