Excluding Tables - Teradata Data Mover

Teradata Data Mover User Guide

Product
Teradata Data Mover
Release Number
16.00
Published
December 2016
Language
English (United States)
Last Update
2018-03-29
dita:mapPath
rdo1467305237457.ditamap
dita:ditavalPath
ft:empty
dita:id
B035-4101
lifecycle
previous
Product Category
Analytical Ecosystem
You can exclude one or more tables from being copied from the source to the target when you copy an entire database using ARC.
  1. Open the parameters.xml file that has the job definition information for the job.
  2. Under the database name, add the selection="excluded" attribute to the table element.
  3. Add a <name> element and enter the name of the table to be excluded.
In the following example, all tables except DBName.Orders and DBName.Accounts are copied to the target.
<database selection="included">
	<name>DBName</name>
	 <table selection="excluded">
		 <name>Orders</name>
 	</table>
	 <table selection="excluded">
		 <name>Accounts</name>
 	</table>
</database>