Copy Triggers | Teradata Data Mover - Copying Triggers - Teradata Data Mover

Teradata® Data Mover User Guide

Product
Teradata Data Mover
Release Number
17.05
Published
October 2020
Language
English (United States)
Last Update
2020-11-18
dita:mapPath
xxl1591023586203.ditamap
dita:ditavalPath
mpm1591127278842.ditaval
dita:id
B035-4101
lifecycle
previous
Product Category
Analytical Ecosystem

Although DSA does not automatically copy triggers from the source when copying entire databases, you can specify triggers for an associated table in the target.

The following results in an error when copying triggers:
  • The source table associated with the trigger is excluded from the tables to be copied
  • The table associated with the trigger is renamed or relocated on the target
  • You do not use AFTER as the value of the action_time tag.
  1. Open the parameters.xml file that has the job definition information for the job.
  2. Create a triggers section.
  3. Add the selection="included" attribute to a trigger element in the section.
  4. Specify the names for the database and subject_table_database elements.
  5. Specify the table name in the table element.
  6. Specify the trigger name in the name element.
  7. Use the action_time enabled="YES" tag to indicate when the trigger occurs.
In the following example, the trigger DBName.RaiseTrig is copied to the target.
<database selection="included">
	<name>DBName</name>
</database>
		<triggers>
			<trigger selection="included">
				<database>DBName</database>
				<subject_table_database>DBName</subject_table_database>
				<table>PPIOrders</table>
				<name>RaiseTrig</name>
				<action_time enabled="YES">AFTER</action_time>
			</trigger>
		</triggers>