High-Volume Agent SAP ECC on Db2 for i Sunset
SAP ECC on Db2 for i is an enterprise resource planning and analytics platform built on top of Db2 for i database. Fivetran replicates data from your Db2 for i source database and loads it into your destination using High-Volume Agent connector.
Supported configurations
Fivetran supports the following configurations:
Supportability Category | Supported Values |
---|---|
Database versions | 7.2 - 7.4 |
Transport Layer Security (TLS) | TLS 1.1 - 1.3 |
Known limitations
- No support for AdaptDDL statements such as
create table
,drop table
,alter table
...add column
, ordrop column
. - No support for Physical Files and Source Files without one member or with multiple members.
- Soft Delete mode is supported only for Physical Files and Source Files.
Features
Feature Name | Supported | Notes |
---|---|---|
Capture deletes | check | |
History mode | ||
Custom data | check | |
Data blocking | check | |
Column hashing | check | |
Re-sync | check | |
API configurable | check | API configuration |
Priority-first sync | ||
Fivetran data models | ||
Private networking | ||
Authorization via API |
ODBC connection
Fivetran requires the ODBC Driver for IBM i Access Client Solutions to be installed on the machine with the High-Volume Agent (HVA). The agent uses the ODBC Driver to connect to, read from, and write data to Db2 for i system.
The following is required for Fivetran to establish an ODBC connection to the Db2 for i system:
- On Linux:
- 64-bit ODBC Driver for IBM i Access Client Solutions
- unixODBC driver manager
- On Windows:
- ODBC Driver for IBM i Access Client Solutions
The ODBC Driver for IBM i Access Client Solutions can be downloaded from the IBM ESS website (requires user authentication). Select the product number '5770-SS1' and then select package 'IBM i Access - Client Solutions' for your platform. For more information about supported ODBC Driver versions, see the release notes (hvr.rel
) in the HVR_HOME
directory of the agent installation.
Setup guide
Follow our step-by-step High-Volume Agent SAP ECC on Db2 for i Setup Guide for specific instructions on how to set up your Db2 for i High-Volume Agent connector.
Sync overview
Once connected to your database, the Fivetran connector runs an initial sync, pulling a full dump of selected data from your database and sending it to your destination. After a successful initial sync, the connector runs in an incremental sync mode. In this mode, Fivetran automatically detects new or updated data, such as new tables or data type changes, and persists these changes into your destination. We use log-based capture to extract your database's change data, then process and load these changes at regular intervals, ensuring a consistently updated synchronization between your database and destination.
NOTE: Choosing a 1-minute sync frequency does not guarantee that your sync finishes within one minute.
Syncing empty tables and columns
Fivetran can sync empty tables and columns for your HVA SAP ECC on Db2 for i connector. For more information, see our Features documentation.
Schema information
Fivetran tries to replicate the exact schema and tables from your Db2 for i source database to your destination according to our standard database update strategies. We create schemas in your destination that map directly to the schemas in your source Db2 for i database, ensuring that the data in your destination is in a familiar format to work with.
When you connect to Fivetran and specify a source database, you also select a schema prefix. We map the schemas we discover in your source database to your destination and prepend the destination schema name with the prefix you selected.
Fivetran-generated columns
Fivetran adds the following columns to every table in your destination:
_fivetran_deleted
(BOOLEAN) marks rows that were deleted in the source table_fivetran_id
(STRING) is a unique ID that Fivetran uses to avoid duplicate rows in tables that do not have a primary key_fivetran_synced
(UTC TIMESTAMP) indicates the time when Fivetran last successfully synced the row
We add these columns to give you insight into the state of your data and the progress of your data syncs. For more information about these columns, see our System Columns and Tables documentation.
Type transformation and mapping
As we extract your data, we match Db2 for i data types to data types that Fivetran supports. If we don't support a certain data type, we automatically change that type to the closest supported type or, for some types, don't load that data at all. Our system automatically skips columns with data types that we don't accept or transform.
The following table illustrates how we transform your Db2 for i data types into Fivetran supported types:
Db2 for i Type | Fivetran Data Type | Fivetran Supported | Notes |
---|---|---|---|
BIGINT | LONG | True | |
FLOAT | DOUBLE | True | |
DECFLOAT | BIGDECIMAL | True | |
DECIMAL | BIGDECIMAL | True | |
DOUBLE | BIGDECIMAL | True | |
INTEGER | INTEGER | True | |
NUMERIC | BIGDECIMAL | True | |
REAL | FLOAT | True | |
SMALLINT | SMALLINT | True | |
DATE | DATE | True | |
TIME | STRING | True | |
DATETIME2 | TIMESTAMP_NTZ | True | |
CHAR | STRING | True | |
NCHAR | STRING | True | |
VARCHAR | STRING | True | |
NVARCHAR | STRING | True | |
BINARY | BINARY | True | |
VARBINARY | BINARY | True | |
CLOB | STRING | True | We truncate CLOB columns if they exceed your destination's maximum allowed length.* |
BLOB | BINARY | True | We truncate BLOB columns if they exceed your destination's maximum allowed length.* |
NCLOB | STRING | True | We truncate NCLOB columns if they exceed your destination's maximum allowed length.* |
DATALINK | False | ||
XML | False | ||
ROWID | False |
If we are missing an important type that you need, reach out to support.
In some cases, when loading data into your destination, we may need to convert Fivetran data types into data types that are supported by the destination. For more information, see the individual data destination pages.
Configuring source data
SAP ECC on Db2 for i connector does not automatically detect tables to sync. You must add or delete tables explicitly in the dashboard.
SAP-specific table support
The replicated tables include the SAP cluster tables, pool tables, and transparent tables. The data in the cluster and pool tables is unpacked and replicated into the target in its unpacked form. For example, the table RFBLG
from the source location is replicated into tables rows for BSEC
and BSEG
.
Initial sync
Once connected to your database, the Fivetran connector copies all rows from every table in every schema for which a Fivetran user has SELECT
permissions (except for those you have excluded in your Fivetran dashboard) and sends them to your destination. Additionally, we add Fivetran-generated columns to every table in your destination offering visibility into the state of your data during the syncs.
Updating data
Fivetran performs incremental updates of any new or modified data from your source database. We use log-based capture to extract your database's change data directly from the log files.
Tables with a primary key
We merge changes to tables with primary keys into the corresponding tables in your destination:
- An INSERT in the source table generates a new row in the destination with
_fivetran_deleted = FALSE
- A DELETE in the source table updates the corresponding row in the destination with
_fivetran_deleted = TRUE
- An UPDATE in the source table updates the corresponding row in the destination
Tables without a primary key
We handle changes to tables without a primary key differently:
- An INSERT in the source table generates a new row in the destination with
_fivetran_deleted = FALSE
. - The
_fivetran_id
column helps us handle DELETE operations:- If there is a row in the destination that has a corresponding
_fivetran_id
value, that row is updated with_fivetran_deleted = TRUE
. - If there is not a row in the destination that has a corresponding
_fivetran_id
value, a new row is added with_fivetran_deleted = TRUE
.
- If there is a row in the destination that has a corresponding
- An UPDATE in the source table is treated as a DELETE followed by an INSERT, so it results in two rows in the destination:
- A row containing the old values with
_fivetran_deleted = TRUE
- A row containing the new values with
_fivetran_deleted = FALSE
- A row containing the old values with
As a result, one record in your source database may have several corresponding rows in your destination. For example, suppose you have a products
table in your source database with no primary key:
description | quantity |
---|---|
Shrink-ray gun | 1 |
Boogie robot | 2 |
Cookie robot | 3 |
You load this table into your destination during the initial sync, creating this destination table:
description | quantity | _fivetran_synced | _fivetran_index | _fivetran_deleted | _fivetran_id |
---|---|---|---|---|---|
Shrink-ray gun | 1 | '2000-01-01 00:00:00' | 0 | FALSE | asdf |
Cookie robot | 2 | '2000-01-01 00:00:00' | 1 | FALSE | dfdf |
Boogie robot | 3 | '2000-01-01 00:00:00' | 2 | FALSE | ewra |
You then update a row:
UPDATE products SET quantity = 4 WHERE description = 'Cookie robot';
After the UPDATE operation, your destination table will look like this:
description | quantity | _fivetran_synced | _fivetran_index | _fivetran_deleted | _fivetran_id |
---|---|---|---|---|---|
Shrink-ray gun | 1 | '2000-01-01 00:00:00' | 0 | FALSE | asdf |
Cookie robot | 2 | '2000-01-01 00:00:00' | 3 | TRUE | dfdf |
Boogie robot | 3 | '2000-01-01 00:00:00' | 2 | FALSE | ewra |
Cookie robot | 4 | '2000-01-01 00:00:00' | 4 | FALSE | zxfd |
You then delete a row:
DELETE FROM products WHERE description = 'Boogie robot';
After the DELETE operation, your destination table will look like this:
description | quantity | _fivetran_synced | _fivetran_index | _fivetran_deleted | _fivetran_id |
---|---|---|---|---|---|
Shrink-ray gun | 1 | '2000-01-01 00:00:00' | 0 | FALSE | asdf |
Cookie robot | 2 | '2000-01-01 00:00:02' | 3 | TRUE | dfdf |
Cookie robot | 4 | '2000-01-01 00:00:02' | 4 | FALSE | zxfd |
Boogie robot | 3 | '2000-01-01 00:00:02' | 5 | TRUE | ewra |
So, while there may be just one record in your source database where description = Cookie robot
, there are two in your destination - an old version where _fivetran_deleted = TRUE
, and a new version where _fivetran_deleted = FALSE
.
We also de-duplicate rows before we load them into your destination. We use the _fivetran_id
field, which is the hash of the non-Fivetran values in every row, to avoid creating multiple rows with identical contents. If, for example, you have the following table in your source:
description | quantity |
---|---|
Shrink-ray gun | 1 |
Shrink-ray gun | 1 |
Shrink-ray gun | 1 |
Then your destination table will look like this:
description | quantity | _fivetran_synced | _fivetran_index | _fivetran_deleted | _fivetran_id |
---|---|---|---|---|---|
Shrink-ray gun | 1 | '2000-01-01 00:00:00' | 0 | FALSE | asdf |
Deleted rows
We do not delete rows from the destination, though the way we process deletes differs for tables with primary keys and tables without a primary key.
Deleted columns
We do not delete columns from your destination. When a column is deleted from the source table, we replace the existing values in the corresponding destination column with NULL
values.
Excluded tables
Fivetran does not sync the following types of tables:
- View
- Alias
- Materialized query table
- System table
Migrating service providers
If you want to migrate service providers, you need to do a full re-sync of your data because the new service provider won't retain the same change tracking data as your original Db2 for i database.