Rajesh Karunakaran
Programmer
Dear Friends,
I am trying to update c_dest from the values from tbl_source if id_one and id_two match.
If the tbl_source is buffered and not TABLEUPDATE() done, this update doesn't update the c_dest fields from it.
I have verified both the ID fields have correct values in them.
When I did a TABLEUPDATE() on tbl_source and ran the same UPDATE command, it worked!
In fact, I have used such UPDATEs without issues. But those were all un-buffered situations I think.
Rajesh
I am trying to update c_dest from the values from tbl_source if id_one and id_two match.
Code:
UPDATE c_dest SET is_selected = .T., status_text = tbl_source.status_text ;
FROM tbl_source ;
WHERE c_dest.id_one = tbl_source.id_one AND c_dest.id_two = tbl_source.id_two
I have verified both the ID fields have correct values in them.
When I did a TABLEUPDATE() on tbl_source and ran the same UPDATE command, it worked!
In fact, I have used such UPDATEs without issues. But those were all un-buffered situations I think.
Rajesh