Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a table in postgres db which has to be incrementally loaded to qlik and stored to QVD. The problem is that table only has an ID field as primary key, and no timestamps. Records can be inserted into any place in the table, not only in the end; i.e. simple approach "load where id > last cached id" won't work.
I don't see any other option than comparing data between DB and Qlik every time, and loading those IDs which are missing in Qlik table. I don't have issues with loading and storing data, but the comparison part is a bit tricky. How can it be implemented (Not Exists()? Join?).
Any advice is much appreciated. Thanks!
The solution itself could also be less performant than reloading everything.
Are the ID a sequence or something similar which is always bigger than the previous value inserted?