I want to provide an Xml-schema for my xmltype Column while using NHibernate. DOes anybody know how to provide a schema in the mapping files? I am using an Oracle 11g R2 database.
If I would create the table manually it would look like that:
create table RevisionHistory(
ID number not null,
...
History XMLType,
primary key(ID)
)
XMLTYPE History STORE AS OBJECT RELATIONAL
XMLSCHEMA "HISTORY"
ELEMENT "History";
with an schema called History.