Merging

For the JDBC connector, if the data for a single account spans multiple rows of database table, you can merge the data for successful aggregation.

To configure the merging settings, complete the following:

  1. To discover the schema, go to Configuration > Schema and then select Discover Schema Attributes.

    Note
    You must discover the schema attributes before moving to the next step.

  2. Go to Configuration > Merging and select the Data needs to be merged checkbox if the data for a single object spans multiple rows of a database table.

  3. Select an Index Column that is used when finding like objects in the dataset.

  4. Select Which columns should be merged from the file from which values must be merged.

  5. Select Save.

Note

The SQL Statement should have order by clause when merging is enabled. The query should be ordered by the index columns defined in the application.

eg: select * from <Table> order by IndexKey1, IndexKey2