how to merge 5 tables into one table

  • Thread starter Thread starter Cecille Regidor
  • Start date Start date
C

Cecille Regidor

I have a dataset that reads from an xml file. When the file was read, 5
tables where created.having the relationship between the table. how can i
merge those five tables into one table or better yet how can i make that
table relational?

thanks
 
If I understand you correctly, if you want to make it relational - you can
add DataRelation objects between them.

If you want to merge them into one big table - I'm guessing they don't all
have the same structure so you'll need to create the new table and copy the
values in iteratively.
 
Back
Top