ORA-01732 data manipulation operation not legal on this view
Hi! I'm tring to update nested table collection(sgp_item) item:
update "spec_tbl" t set value(t)=
updatexml( value(t),'/spec/sgp_item[0]/sgp_qty', 3)
where existsnode( value(t),'/spec[el_name="aaaaaaaaaa"]')=1;
and I've got something about view(ORA-01732) but no views exists in my database at all- spec_tbl
is xml table.
What's the matter?
Thank you.