Skip to content
Gilles QUERRET edited this page Apr 3, 2015 · 5 revisions

PCTBinaryDump task -- <pct:binary_dump />

Description

Dump binary datas from database. Tables starting with _ and SYS are always ignored.

Parameters

Attribute Description Type Requirement Default value
dest Destination directory File Required No default value

PCTBinaryDump inherits attributes from PCT.

Parameters as nested elements

One and only one connection should be used with this task.

include and exclude

Comma-separated list of patterns of tables that must be included/excluded ; all tables are included when include is omitted

Examples

<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.

Clone this wiki locally