Importing or exporting multiple tables at a time
With IBM® Fast Data Movement data movement feature, you can import or export a number of tables at a time.
About this task
You can use the fq.tables property in both, import and export configuration
XML files to define a list of tables to be moved. As a value for this parameter, you provide a
comma-separated list of source tables for import, and target tables for export.
<property>
<name>fq.tables</name>
<value>ADMIN.tab</value>
</property>
The
format of this value is <SCHEMA>.<table>. You can also use an asterisk (*) character in the fq.tables property for
a combination of multiple schemas and tables, for example:
S1.T1
- imports table T1 in schema S1S1.*
- imports all tables from schema S1*.T1
- imports all tables T1 from all schemas*
- imports all tables from the current schema for the user that is currently logged in
Note:
- Include double quotations around delimited table names.
- You cannot use * as part of the schema or table name and use it as a filter, for example:
S1.a*
, meaning "all tables in schema S1, with name starting witha
". The system cannot interpret such filter, anda*
is interpreted as the exact table name.