BLOB – A BLOB value that keeps the content of the memory table.
table entry – A literal or numeric value that corresponds to a memory table in the Data repository.
DB table name – This parameter lets you refer to a different instance of the table by its name.
mode – This parameter sets the mode for handling duplicate records. The mode values are:
0 Aborts duplicate records. A new record from the BLOB will be appended to the existing table. When encountering a duplicate record, the entire operation is aborted and no record is set.
1 Skips duplicate records. New records from the BLOB are appended to the existing table. When encountering a duplicate record, the record is skipped, and the next record in the BLOB is inserted.
2 Overwrites duplicate records. New records from the BLOB are appended to the existing table. When encountering a duplicate record, the new record replaces the existing duplicate record.
3 Reset existing table. The existing table is deleted and the records from the BLOB are recreated in a new table.
The mode value is set to 0 when a valid value (0,1,2,3) is not entered.
|