4.1.3 Extract XML data to Microsoft Access MDB using the command line
Use the following command line to extract data from an XML file to a Microsoft Access MDB database:
Exultcmd.exe -t MDB -f sales.mdb -w sales.xml
Disable progress reporting using the ‘-q’ option if the file to be converted is large:
Exultcmd.exe -q -t MDB -f sales.mdb -w sales.xml
Want to overwrite existing files (perhaps as a scheduled batch conversion)? Use the ‘-w’ option to overwrite the target file.
Exultcmd.exe -w -t MDB -f sales.mdb -w sales.xml
By default, output created by Exult is compatible with Microsoft Access 97. To target Microsoft Access 2003, for example, use the ‘-a’ option:
Exultcmd.exe -t MDB -a 2003 -f sales.mdb -w sales.xml

