DumpDB is a command line utility to export the search results from the FileLocator Network database.
Switches
/format:html|xml|text|custom
|
Format to export the search results in.
|
/exportfolder:"folder path"
|
Folder to export the results to. Each search run is saved in a different file.
|
/exportfile:"file path"
|
File to export the results to. All the results are saved into the same file.
|
/transform:"transform file path"
|
XSL Transform to format the results, only used if /format:custom switched used. e.g.
/transform:"c:\transforms\hits_only.xsl"
|
/after:"date time"
|
Filters the exported search results to those that occurred after a specified date and time, e.g.
/after:"1 Nov 2009 1pm"
|
/before:"date time"
|
Filters the exported search results to those that occurred before a specified date and time, e.g.
/before:"30 Nov 2009"
|
/search:"search name"
|
Filters the exported search results to those that exists for a specific search. The search name can use wildcard characters. e.g.
/search:"Keyword%"
to filter all searches that start with the name 'Keyword'
|
When exporting to a folder, e.g. using the /exportfolder switch, each search run is saved in a different file. The file name is auto generated in the format:
uniqueid_searchname_searchrundate
Example:
The following example exports all searches associated with the search named 'Main Search' to a folder in HTML format.
dumpdb.exe /search:"Main Search" /exportfolder:"c:\exportsearch" /format:html
|
|