Compare two DataTable inputs to perform required operations.
This activity is used to compare DataTables to get matched, unmatched, or combine the list of all rows in the DataTable inputs.
DataTable 1 : DataTable Variable Specifies the first DataTable to compare values.
DataTable Variable
DataTable 2 : DataTable Variable Specifies the second DataTable to compare values.
DataTable Operations : Specifies the type of data table operations to be used on the DataTable inputs. The data table operations available are:-
Except - To retrieve unmatched records from the first table.
Except
Intersect - To retrieve all the rows which are in both tables.
Intersect
Union - To retrieve the combined data from both the DataTable inputs. It does not repeat the DataRow even if it exists in multiple DataTables.
Union
Output: DataTable Variable Specifies the variable that stores the resulting data table of the DataTable operation.
Last updated 3 years ago