Subject | RE: [IBO] Copy entire records without specifying the fields? IB_Datapump? |
---|---|
Author | Jason Wharton |
Post date | 2006-12-07T22:46:35Z |
> very interesting argument. A curiosity:The best way to do this by far is to create a stored procedure that receives
>
> Sometimes can happen that one or more records (based on some
> fields) already
> exist on the destination. Is there any possibility to instruct the
> IB_DataPump to:
>
> 1) Edit the record with new values
>
> or
>
> 2) Completely ignore the record
>
> I suspect that the only way to accomplish this task is via
> OnAfterFetch
> event, right?
all the information and then in the body of the stored procedure figure out
what to do with the data. This way, the client simply sends the data to the
stored procedure and the server figures out the rest. This also has the
benefit of making your applications easier to maintain.
Jason Wharton