Importing or exporting multiple tables at a time
With IBM® Fluid Query data movement feature, you can import or export a number of tables at a time.
About this task
You can use the nz.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 NPS® tables, that is, source tables for
import, and target tables for export.
<property>
<name>nz.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 nz.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 schemas with all tables*- imports all schemas with all tables
Note:
- Include double quotations around delimited table names.
- If full schema support is enabled on your NPS system, make sure to provide the schema name together with the table name in this property.
- 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.