ORA-03001: Unimplemented Feature When Updating NCLOB Using GETCLOBVAL
(Doc ID 1546992.1)
Last updated on APRIL 12, 2022
Applies to:
Oracle Database - Enterprise Edition - Version 11.2.0.3 and laterOracle Database Cloud Schema Service - Version N/A and later
Oracle Database Exadata Cloud Machine - Version N/A and later
Oracle Cloud Infrastructure - Database Service - Version N/A and later
Oracle Database Cloud Exadata Service - Version N/A and later
Information in this document applies to any platform.
Symptoms
Updating a NCLOB column using getCLOBVal fails.
ERROR:
=====
ORA-03001: unimplemented feature
TEST CASE:
=========
create table <table_name>
(
xml_col xmltype,
xml_clob nclob
);
insert into <table_name> (xml_col)
select xmlelement("Language",'this is the tag') from dual; 2
commit;
update <table_name> set xml_clob=(select ch.xml_col.getCLOBVal() from <table_name> ch);
Cause
To view full details, sign in with your My Oracle Support account. |
|
Don't have a My Oracle Support account? Click to get started! |
In this Document
Symptoms |
Cause |
Solution |
References |