Union Tables from Different Sources

  • Thread starter Thread starter julio delgado
  • Start date Start date
J

julio delgado

Hi:

I am retriving data from a Text File, Oracle and SQL. Is there any way that
I can perform a Union of Three data.tables from 3 Different Datasets.

Thanks
 
Assuming that you want to do this locally with the DataTable, then check out
DataSet.Merge for one method, and you could also pull it off by configuring
three different dataadapters and filling the same datatable (assuming the
column names and types match).

HTH,

Bill
 
Back
Top