Recovered missing data using the following parameters:
Start Date:
{{ session['startdate'] }}
End Date:
{{ session['enddate'] }}
From Schema:
{{ session['source'] }}
To Schema:
{{ session['target'] }}
Received {{ session['from_rows'] }} from SOURCE
Received {{ session['to_rows'] }} from TARGET
Table(s) successfully processed:
{% for minuscount in minuscountlist %}
- {{ minuscount['actualtable'] }}: {{ minuscount['rowcount'] }} Rows added to target schema
{% endfor %}
{% if failed_tables|length > 1 %}
Unable to process data from the following table(s). Manual review of CSV files needed to resolve the
issue:
{% for tablename in failed_tables %}
- {{ tablename }}
{% endfor %}
{% endif %}
{% if mismatchlist|length >= 1 %}
Warning:
{% for mismatch in mismatchlist %}
- Detected count discrepancy for {{ mismatch['actualtable'] }} while processing data:
(Sending Table) {{ mismatch['from'] }}: {{ mismatch['fromcount'] }} Rows
(Receiving Table) {{ mismatch['to'] }}: {{ mismatch['tocount'] }} Rows
Further investigation may be required as we expected the source table to have more rows than the target
{% endfor %}
{% endif %}