Adds a table for replication with materialization options.
ra_add_table modelName, primaryTable, replicateTable,
create=[true|false],
replace=[true|false],
materialize=[true|false],
deferReplication=[true|false]
Use the deferReplication parameter to instruct Replication Agent for SAP HANA not to create the table at the replicate database, if there is no data stored for replication.
ra_add_table HANA2HANA, sap_hana01, materialize = true, go
ra_add_table HANA2HANA, sap_ha334, deferReplication = true go
ra_add_table HANA2HANA, soa*, *, create=true, replace=true, materialize=true, deferReplication=false go
Set the materialize parameter to populate the replicate table from the primary table before beginning trigger-based replication.
Use a wildcard to specify table names. For example, you can use an asterisk (*) to specify “TABLE_PREFIX*”, which includes all tables that start with TABLE_PREFIX for replication. If you use the wildcard, the replicateTable parameter must be set to “*”.