Teradata as Target
Fivetran HVR supports integrating changes into Teradata location. This section describes the configuration requirements for integrating changes (using Integrate and Refresh) into Teradata location. For the list of supported Teradata versions, into which HVR can integrate changes, see Integrate changes into location in Capabilities. HVR also allows you to perform Compare for Teradata database in source location.
HVR uses the Teradata ODBC driver to write data to Teradata during Continuous Integrate and Row-wise Refresh.
HVR uses the TPT Load interface for copying data into the Teradata tables during Bulk Refresh and the TPT Stream/Upload interface for loading data into the burst table during Burst Integrate.
The preferred methods for writing data to Teradata are using Burst Integrate and Bulk Refresh as they provide better performance.
Grants for Integrate and Refresh
This section lists the grants required for integrating changes into Teradata. By default, the HVR User has all required permissions to Integrate changes into default user database.
To create target tables using Refresh, the HVR database User must be granted
create table
anddrop table
privileges.grant create table, drop table on targetdb to username;
To change tables that are owned by other users (using action TableProperties with parameter Schema), the HVR database User must be granted
select
,insert
,update
, anddelete
privileges.grant select, insert, update, delete on targetdb to username;
To perform Burst Integrate and Bulk Refresh, the HVR database User must be granted
create macro
anddrop macro
privileges.grant create macro, drop macro on targetdb to username;