| Name | Description | Type | Additional information |
|---|---|---|---|
| runID |
GUID-formatted ID which was supplied by the user at the start |
string |
None. |
| status |
Result status after run. Typically "Complete" or "Failed". |
string |
None. |
| log |
Resulting log at the specified level. |
string |
None. |
| returnValue |
Any User-defined string value being returned out from the job. Can be set through scripting (C#: Starfish.ReturnValue = "foo";) |
string |
None. |
| totalRows |
Total number of Origin rows processed. |
integer |
None. |
| inserts |
Number of rows inserted in the Destination. |
integer |
None. |
| updates |
Number of rows updated in the Destination. |
integer |
None. |
| deletes |
Number of rows deleted in the Destination. |
integer |
None. |
| errors |
Number of errors that occurred. |
integer |
None. |
| skips |
Number of rows skipped (for instance by calling GotoNextRow or using SkipIfBlank). |
integer |
None. |
| ignores |
Number of ignored rows (occurs when an update operation is attempted, but there are no matching records to update) |
integer |
None. |