Skip to content

Commit

Permalink
fix transform tables, interbase limits index to 252 characters
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed Aug 15, 2011
1 parent 38cb62e commit 58bd30b
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -402,7 +402,7 @@
</table>

<table name="transform_table" description="Defines a data loader transformation which can be used to map arbitrary tables and columns to other tables and columns.">
<column name="transform_id" type="VARCHAR" size="128" required="true" primaryKey="true" description="Unique identifier of a specific transform." />
<column name="transform_id" type="VARCHAR" size="50" required="true" primaryKey="true" description="Unique identifier of a specific transform." />
<column name="source_node_group_id" type="VARCHAR" size="50" required="true" primaryKey="true" description="The node group where data changes should be captured." />
<column name="target_node_group_id" type="VARCHAR" size="50" required="true" primaryKey="true" description="The node group where data changes will be sent." />
<column name="transform_point" type="VARCHAR" size="10" required="true" description="The point during the transport of captured data that a transform happens. Support values are EXTRACT or LOAD." />
Expand All @@ -418,7 +418,7 @@
</table>

<table name="transform_column" description="Defines the column mappings and optional data transformation for a data loader transformation ">
<column name="transform_id" type="VARCHAR" size="128" required="true" primaryKey="true" description="Unique identifier of a specific transform." />
<column name="transform_id" type="VARCHAR" size="50" required="true" primaryKey="true" description="Unique identifier of a specific transform." />
<column name="include_on" type="CHAR" size="1" required="true" default="*" primaryKey="true" description="Indicates whether this mapping is included during an insert (I), update (U), delete (D) operation at the target based on the dml type at the source. A value of * represents the fact that you want to map the column for all operations."/>
<column name="target_column_name" type="VARCHAR" size="128" required="true" primaryKey="true" description="Name of the target column." />
<column name="source_column_name" type="VARCHAR" size="128" description="Name of the source column." />
Expand Down

0 comments on commit 58bd30b

Please sign in to comment.