Hi
I'd like to know if is possible update a record when load a table. The update must be over a record with a primary key.
For example:
I have a record with: id|date_begin|date_end|data
2|02/03/2009|NULL|0
and I want that line to be update when a record like
2|02/03/2009|10/03/2009|56,7
comes.
Is it possible? Primary key is defined by id, date_begin.
What I want is an update instead a reject record.
Thanks in advance.