Importing Data from XML Files |
| The Import from XML File feature allows for the insertion of data from one or more XML files into selected database tables. |
Note: XML file imports rely on the table name and column name
tags being present within the import file. For example:
<?xml version="1.0" encoding="UTF-8"?>
<table name="employees">
<row rownum="1">
<employee_id>1234</employee_id>
<first_name>John</first_name>
<second_name>Smith</second_name>
<department>001</department>
<start_date>20020506</start_date>
<salary>55000</salary>
</row>
...
</table> |
|