xml database - Import XML file in Oracle XML DB Repository -


i new xml databases. have following xml file (employees.xml) :-

<?xml version="1.0"?> <emps>     <emp empno="1" deptno="10" ename="john"  salary="21000"/>     <emp empno="2" deptno="10" ename="jack" salary="310000"/>     <emp empno="3" deptno="20" ename="jill" salary="100001"/> </emps> 

i want load in oracle xml db repository (under "public" folder) can access later using xqj. oracle locally installed in machine. clues how import xml file ?

the various technologies loading xml data tables documented here.

basically use lobfile function in sqlloader file whole , insert xml column.


Comments

Popular posts from this blog

serialization - Convert Any type in scala to Array[Byte] and back -

matplotlib support failed in PyCharm on OSX -

python - Matplotlib: TypeError: 'AxesSubplot' object is not callable -