Dump binary datas from database. Tables starting with _ and SYS are always ignored.
| Attribute | Description | Type | Requirement | Default value |
|---|---|---|---|---|
| dest | Yes if indexes should be rebuild (build indexes option) | File | Required | No default value |
PCTBinaryDump inherits attributes from PCT.
One and only one connection should be used with this task.
Comma-separated list of patterns of tables that must be included/excluded ; all tables are included when include is omitted
<PCTBinaryDump dest="outputDir" dlcHome="${env.DLC}" >
<PCTConnection dbName="foo" dbDir="base" singleUser="true" />
</PCTBinaryDump>
Dump every table in foo database.
<PCTBinaryDump dest="outputDir" dlcHome="${env.DLC}" >
<PCTConnection dbName="foo" dbDir="base" singleUser="true" />
<exclude name="b*" />
<include name="ba*" />
</PCTBinaryDump>
Dump every table in foo database, excluding those starting with the letter b. Tables starting with "ba" will be included.