Datatable Comparison -

@Manikandasamy
give a try on following:

  • Use Join DataTable activity - Join type: Inner, dt1 to dt2 (out:dtJoin)
  • define a String Array with the Columns which you want to keep from dtJoin - arrCols
  • get result table by: dtJoin.DefaultView.toTable(false,arrCols)

the first requirement description was showing also the unmatched rows from dt2 in the result (hint for Full Join)
the second requirement description is showing the only common rows (hint for inner Join) and a selection of needed columns (hint for selecting with default view)

Also have a look here: