XML Oracle PLSQL Tutorial

SQL>  create table myTable(
  2     id number(9),
  3     myValue xmltype
  4  );
Table created.
SQL> begin
  2    dbms_xmlschema.registerSchema ('http://d.com/myType.xsd',xdbURIType('/xsd/myType.xsd').getClob(),True,True,False,True);
  3  end;
  4  /
SQL>
SQL> insert into myTable values (67, XMLTYPE('
  2       1
  3       2
  4   '))
  5  /
1 row created.
SQL>
SQL> select * from myTable;
   emp
Number
------
MYVALUE
------------------------------------------------------
    67
stance" xsi:noNamespaceSch
1 row selected.
SQL>
SQL> drop table myTable;
Table dropped.