Current script below. This works great for finding newly created incidents from the last load but now I want to update my QVD incidents where sys_updated_on has been updated.
I think I need to load the old data, query for new incidents where sys_updated_on > max(sys_updated_on), and then load old where not in new? This is what I don't know how to accomplish with ODBC SELECT vs LOAD.
tbl_incidents:
LOAD inc_number,
enduser,
agent,
opened_at,
SDCI,
short_description,
sys_created_on,
sys_updated_on
FROM [incidents.qvd] (qvd);
MaxDate:
LOAD max(sys_created_on) as MaxDate
Resident tbl_incidents;
LET vMaxDate = chr(39) & TimeStamp(PEEK('MaxDate', 0, 'MaxDate')) & chr(39);
You can check the QV cookbook by Rob, which shows a decent incremental load example ("delta load template") application including insert, delete and update of records: