I have to copy rows from one table to another. In the source table I can have RowError set on rows. When I do this:
targetTable.BeginLoadData();
targetTable.Load( new DataTableReader( sourceTable ) )
targetTable.EndLoadData();
The target table does not get row errors copied on its rows from source table. Can anyone tell what am I supposed to do to make it work? Thanks.
EDIT: I do not want to lose the data already present in the target table. Nor do I want to change the reference.