Could anyone help with this question
dsOne is a dataset containing 2 rows and 2 columns the columns are personid and personname, primary key of dsone is personid
dsTwo is another dataset containing 1 row and 3 columns which are personid, personname and persontype
One of the rows in dsone has same value in personid column as row in dstwo, no other rows have matching personid values, merge is done with this code
dsone.merge(dstwo, true, missingschemaaction.add)
I've got to state how many rows dsone and dstwo will have after the merge and whether or not dsone will add the persontype column
I'm sure dsone will add the persontype column with the code missingschemaaction.add but I'm not sure how many rows dsone and dstwo will contain after the merge, I think true means the information is preserved
after the merge but still not sure
Any help would be appreciated, I've looked long and hard on the web but can't see any suitable examples
Thanks in advance
dsOne is a dataset containing 2 rows and 2 columns the columns are personid and personname, primary key of dsone is personid
dsTwo is another dataset containing 1 row and 3 columns which are personid, personname and persontype
One of the rows in dsone has same value in personid column as row in dstwo, no other rows have matching personid values, merge is done with this code
dsone.merge(dstwo, true, missingschemaaction.add)
I've got to state how many rows dsone and dstwo will have after the merge and whether or not dsone will add the persontype column
I'm sure dsone will add the persontype column with the code missingschemaaction.add but I'm not sure how many rows dsone and dstwo will contain after the merge, I think true means the information is preserved
after the merge but still not sure
Any help would be appreciated, I've looked long and hard on the web but can't see any suitable examples
Thanks in advance