问题是关于oracle的,刚刚开始学oracle,遇到一个问题,前几天看oracle的技术文档,是关于XML DB的,文中提到,要将xml文档以存到XMLType表中需要先将xml文档转化为xmltype的形式的数据,原文如下:
To store an XML document in an XMLType table or column the XML document must first be converted into an XMLType instance. This is done using the different constructors provided by the XMLType datatype. For example, given a PL/SQL function called getCLOBDocument():


























在该目录底下放置几个xml文档之后执行:INSERT INTO XMLTABLE VALUES(XMLTYPE(getCLOBDocument('books.xml')));
可以将xml文档插入数据库,现在的问题是:想把客户端的xml文档插入到服务器的oracle数据库中不知道应该怎么做(服务器windows server2003)还有如果是unix的服务器呢。