TableProperties
Action TableProperties defines properties of a replicated table in a database location. The action has no effect other than that of its parameters. These parameters affect both replication (on the capture and integrate side) and Refresh and Compare.
Parameters
This section describes the parameters available for action TableProperties.
Following are the two tabs/ways, which you can use for defining action parameters in this dialog:
- Regular: Allows you to define the required parameters by using the UI elements like checkbox and text field.
- Text: Allows you to define the required parameters by specifying them in the text field. You can also copy-paste the action definitions from Fivetran HVR documentation, emails, or demo notes.
Parameter | Argument | Description |
---|---|---|
BaseName | tbl_name | This action defines the actual name of the table in the database location, as opposed to the table name that HVR has in the channel. This parameter is needed if the 'base name' of the table is different in the capture and integrate locations. In that case, the table name in the HVR channel should have the same name as the 'base name' in the capture database and parameter BaseName should be defined on the integrate side. An alternative is to define the parameter BaseName on the capture database and have the name for the table in the HVR channel the same as the base name in the integrate database. Parameter BaseName is also necessary if different tables have the same table name in a database location but have different owners (parameter Schema). Or if a table's base name is not allowed as an HVR name, e.g. if it contains special characters or if it is too long. If this parameter is not defined then HVR uses the base name column (this is stored in the tbl_base_name column of the HVR_TABLE repository table. The concept of the 'base name' in a location as opposed to the name in the HVR channel applies to both columns and tables, see parameter BaseName in ColumnProperties. Parameter BaseName can also be defined for file locations (to change the name of the table in XML tag) or for Salesforce locations (to match the Salesforce API name). |
Absent | Table does not exist in database. For example, parameter Absent can be defined if a table needs to be excluded from one integrate location but included in another integrate location for a channel with parallel integration jobs. | |
NoDuplicateRows | Replication table cannot contain duplicate rows. This parameter only has effect if no replication key column(s) is defined for the HVR_COLUMN repository table. If no replication key column(s) are defined on the table and this parameter is not set, then all updates are treated as key updates and are replicated as a delete and an insert. In addition, each delete is integrated using a special SQL subselect which ensures only a single row is deleted, not multiple rows. | |
Schema | schema | Name of database schema or user who owns the base table. By default, the base table is assumed to be owned by the database username that HVR uses to connect to the database. |
CoerceErrorPolicy | policy | Defines a policy to handle type coercion error (an error that occurs while converting a value from one data type to a target data type). This policy typically affects all types of coercion errors, unless parameter CoerceErrorType is defined in the same action. Multiple actions with parameter CoerceErrorPolicy can be defined to apply different policies to different coercion error types. Available options for policy are:
|
CoerceErrorType | types | This parameter defines which types of coercion errors are affected by the parameter CoerceErrorPolicy. The default (if only CoerceErrorPolicy is defined) is for all the below coercion errors to be affected. When multiple types are selected, it should be a comma-separated list. Available options for types are:
|
SapUnpackErrorPolicy | policy | Defines a policy to handle type coercion error during SapUnpack (when parameter SapUnpack in action Transform is defined). Type coercion error is an error that occurs while converting a value from one data type to a target data type. This policy typically affects all types of coercion errors, unless parameter CoerceErrorType is defined in the same action. Multiple actions with CoerceErrorPolicy can be defined to apply different policies to different coercion error types. Available options for policy are:
|
PackedInside | Name of the SAP database table that holds the data for the pool or cluster table being unpacked. Action TableProperties with this parameter is defined automatically when adding a pool or cluster table using a SAP data-source.
This parameter is required for unpacking the SAP tables using parameter SapUnpack in action Transform. | |
TrimWhiteSpace | Remove trailing whitespace from varchar. | |
TrimTime | policy | Trim time when converting date from Oracle and SQL Server. Available options for policy are:
|
MapEmptyStringToSpace | Convert empty Ingres or SQL Server varchar values to an Oracle varchar2 containing a single space and vice versa. | |
MapEmptyDateToConstant | date | Convert between Ingres empty date and a special constant date. Value date must have form DD/MM/YYYY. |
CreateUnicodeDatatypes | On table creation use Unicode data types for string columns, e.g. map varchar to nvarchar | |
DistributionKeyLimit | int | Maximum number of columns in the implicit distribution key. The A table's distribution key can be set explicitly or implicitly. An explicit distribution key can be set by clicking the checkboxes in the table's dialog, or by defining parameter DistributionKey in action ColumnProperties. If no explicit distribution key is defined, then HVR uses the implicit distribution key rule. The implicit rule is to use the first N columns; either from the replication key, or (if the table has no replication key) from the regular columns which do not have a LOB data type. Some DBMSes (such as Redshift) are limited to only one distribution key column. |
DistributionKeyAvoidPattern | patt | Avoid putting given columns in the implicit distribution key. For a description of the implicit distribution key, see parameter DistributionKeyLimit above. The If this parameter is defined then HVR will avoid adding any columns whose name matches the implicit distribution key. For example, if a table has replication key columns (k1 k2 k3 k4) and action parameters DistributionKeyAvoidPattern='k2|k3' and DistributionKeyLimit=2 are defined, then the implicit distribution key would be (k1 k4). However, if these parameters are defined as DistributionKeyAvoidPattern='k2|k3' and DistributionKeyLimit=4, then the implicit distribution key would be (k1 k2 k3 k4). For SAP databases, column 'mandt' is often constant, so parameter DistributionKeyAvoidPattern=mandt should be used. |
CharacterMapping | rules | Allows to replace some characters (potentially unsupported) in string columns with a replacement sequence. Value rules should be a semicolon-separated list of elements, each with form char>chars. Each char be a literal character or have form \n, \r, \t, \\, \xNN, \uNNNN, \UNNNNNNN (where N is a hex digit). Example;"\n>\\n;\r>\\r;\x00>\\0". Note that the mapping is performed during integration, refresh and also compare, so the HVR compare does not show an earlier mapping as a difference. |
MapBinary | policy | Controls the way binary columns are mapped to a string. This parameter is relevant only if either of the following is true:
Available options for policy are:
|
MissingRepresentationStringFile Kafka | str | Inserts value str into the string data type column(s) if the value is missing/empty in the respective column(s) during integration. The value str defined here should be a valid input for the column(s) in target database. When parameter MissingRepresentationNumeric or MissingRepresentationDate is used without defining MissingRepresentationString then a default value (for example, an empty string) is inserted into the string data type column(s) in which the value is missing/empty. Defining MissingRepresentationString enables HVR to use parameterTimeKey in action ColumnProperties without requiring supplemental logging all. |
MissingRepresentationNumericFile Kafka | str | Inserts value str into the numeric data type column(s) if the value is missing/empty in the respective column(s) during integration. The value str defined here should be a valid input for the column(s) in target database. When parameter MissingRepresentationString or MissingRepresentationDate is used without defining MissingRepresentationNumeric then a default value (for example, 0) is inserted into the numeric data type column(s) in which the value is missing/empty. Defining MissingRepresentationNumeric enables HVR to use parameterTimeKey in action ColumnProperties without requiring supplemental logging all. |
MissingRepresentationDateFile Kafka | str | Inserts value str into the date data type column(s) if the value is missing/empty in the respective column(s) during integration. The value str defined here should be a valid input for the column(s) in target database. When parameter MissingRepresentationString or MissingRepresentationNumeric is used without defining MissingRepresentationDate then a default value is inserted into the date data type column(s) in which the value is missing/empty. Defining parameter MissingRepresentationNumeric enables HVR to use parameterTimeKey in action ColumnProperties without requiring supplemental logging all. |
PartitionByDateGoogle BigQuery | Enables partitioning by date for Google BigQuery tables. Google BigQuery allows to partition tables by date, ingestion time, or integer range. Defining this parameter allows to use date partitioning by default. For other partitioning flavors, use parameter RefreshTableCreateClause in action DbObjectGeneration. | |
BQClusterKeysGoogle BigQuery | col_name | Creates Google BigQuery clustered tables. Google BigQuery allows to create clustered tables. This automatically organizes data based on the contents of one or more columns in the table's schema. When multiple col_name are supplied, it should be a comma-separated list, e.g., column1,column2,column3. Google BigQuery limits the maximum number of supported clusters. For more information, refer to Google BigQuery documentation. |
Context | ctx | Ignores action unless Refresh or Comparecontextctx is enabled. The value ctx must be the name of the context (a lowercase identifier). It can also be specified as !ctx, which means that the action is effective unless context ctx is enabled. Defining an action that is only effective when the context is enabled can have different uses. For example, if action TableProperties with parameters BaseName=other_name and Context=diff_base is defined, then normally the default base name is used, but if context diff_base is enabled (–C diff_base), then the base name other_name is used. |