novixys

Exult Standard

Convert XML into Microsoft Excel (XLS), Microsoft Access (MDB or ACCDB), or CSV.

Download
a Free Trial
Buy Now
for US$150 $105

Exult SQL Server

Import XML into SQL Server.

Download
a Free Trial
Buy Now
for US$250

Exult MySQL

Import XML into MySQL.

Download
a Free Trial
Buy Now
for US$195 $125

Exult Oracle

Import XML into Oracle.

Download
a Free Trial
Buy Now
for US$500

Home » Documentation » Swift Command Line

2.4 Export XML data to Microsoft Excel

For exporting XML data from a Swift Document to Microsoft Excel (XLS) format, use the exportXLS action as follows: This command exports all tables and queries in the Swift Document ‘Data.xdb’ to an Excel spreadsheet ‘Data.xls’.

 
SwiftCmd.exe exportXLS Data.xdb Data.xls

You can specify specific tables and/or queries to export by listing them out on the command line.

 
SwiftCmd.exe exportXLS Data.xdb Data.xls Query_1 Query_2 .. Table_1 ..

Please note that if a query has the same name as an existing table, the query will be exported. To have the table of the same name to be exported instead, please prepend the table name with a ^ as follows:

 
SwiftCmd.exe exportXLS Data.xdb Data.xls ^Name_1 ^Name_2

By default, existing output files will not be overwritten. To overwrite the output file (‘Data.xls’), use the -w option:

 
SwiftCmd.exe -w exportXLS Data.xdb Data.xls