Azure Synapse Analytics as Target
Fivetran HVR supports integrating changes into Azure Synapse location. This section describes the configuration requirements for integrating changes (using Integrate and Refresh) into Azure Synapse location.
HVR uses the following interfaces to write data into an SQL Server location:
- SQL Server ODBC driver, used to perform Continuous Integrate and Row-wise Refresh.
- SQL Server BCP interface, used for copying data into database tables during Burst Integrate and Bulk Refresh.
Grants for Compare, Refresh and Integrate
This section lists the grants required for integrating changes into Azure Synapse.
The HVR database User must be granted the following privileges:
grant create table to username; grant select, insert, update, delete on replicated tables to username;
To perform Bulk Refresh or alter tables which are in another schema (using action TableProperties with parameter Schema=myschema), the HVR database User must be granted the following privilege:
grant control on schema :: myschema to username;
When Refresh is used to create the target tables, the HVR database User must be granted the following privilege:
grant create table on schema :: myschema to username;
HVR's internal tables, like burst and state-tables will be created in the user's default_schema. The default_schema can be changed using:
alter user hvr_user with default_schema = myschema;