Menu

How to close?If a row is not updated, then the dataloader will attempt to insert it.

Help
ikezheng
2019-01-03
2019-01-09
  • ikezheng

    ikezheng - 2019-01-03

    Hi,
    If a row is not updated, then the dataloader will attempt to insert it.
    How to close?

     
  • ikezheng

    ikezheng - 2019-01-04

    I do it this way.
    insert into sym_conflict(resolve_row_only) values(1);
    OK

     
  • Eric Long

    Eric Long - 2019-01-09

    That is the default behavior. If an update gets zero rows affected, then it attempts an insert. That is called a "fallback" resolution. You can use the sym_conflict table to change the resolution behavior. For example, set the resolve_type to "manual" to receive an error when the update gets zero rows affected.

     

Log in to post a comment.