SQL>
SQL> create table my_xml_docs
2 ( id number primary key,
3 xmldoc varchar2(4000)
4 )
5 /
Table created.
SQL>
SQL> insert into my_xml_docs( id, xmldoc )
2 values( 1,
3 '
4 T
5 31-MAR-2001
6 11:00
7 Review
8
9 J
10 T
11
12 ' )
13 /
1 row created.
SQL>
SQL> drop table my_xml_docs;
Table dropped.