Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> select col1, ..., xmltype(my_blob_col) from tableWithBlobColumn
Hi!
What I want is something like: select col1, ..., xmltype(my_blob_col) from
tableWithBlobColumn.
Yet I have an oracle 8.1.7.4 db storing xml as blob. (yes, yes it should
have been clob, but it wasn't my descision)
Soon we upgrade to 10g, so I want to convert them to xmltype (-:
I found that the function xmltype can take an clob, but I have an blob that
should be converted.
Here what I tried:
SELECT EMPTY_CLOB()
INTO xmlclob
FROM DUAL;
dbms_lob.convertToClob(xmlclob, xmlblob,
DBMS_LOB.LOBMAXSIZE, dest_offset, src_offset, DBMS_LOB.default_csid, lang_context, warning);
dbms_output.put_line('Warning: ' || warning || ' id'||nr);
end;
/
ORA-22275: invalid LOB locator specified ORA-06512: at "SYS.DBMS_LOB", line 683 ORA-06512: at line 20
ORA-22275 invalid LOB locator specified
Cause: One of the following:
1. The LOB locator was never initialized. 2. The locator is for a BFILE and the routine expects a BLOB/CLOB/NCLOB locator. 3. The locator is for a BLOB/CLOB/NCLOB and the routine expects a BFILE locator. 4. An attempt was made to update the LOB in a trigger body -- LOBs intrigger bodies are read only.
http://www.csee.umbc.edu/help/oracle8/server.815/a67785/e19400.htm http://wtcis.wtamu.edu/oracle/appdev.101/b10802/d_lob.htm#1017117
If could get the above to work, I could add some lines off code an be happy: my_xmltype_variable := xmltype(xmlclob); -- my_xmltype declared as xmltype
Thanks for help (-:
Greetings
Bjoern
-- http://www.freelists.org/webpage/oracle-lReceived on Sat Mar 11 2006 - 06:39:01 CST
![]() |
![]() |