Disable Schema validation in XMLTYPE Column
Hi all!
I have created the following table with an Schema-based XMLTYPE column:
CREATE TABLE ADR1 (
idnr NUMBER,
FileType XMLTYPE,
constraint pk_idnr primary key (idnr))
XMLTYPE COLUMN FileType STORE AS CLOB
XMLSCHEMA "http://localhost:8080/home/usr/xsd/cc.xsd"
ELEMENT "File";
Now i want to disable the schema - validation for the XMLTYPE Column. I have done this before for an XMLTYPE Table. But in this case of an XMLTYPE Column i cant find the Constraint, that belongs to the Column.
Thanks for your help!
Axel