Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Does anyone know how to make the STORE command optional based on full reloads only? This would be helpful on incremental loads so the stored QVD data is never overwriten by an incomplete data load.
I need a function like "=IsFullReload()"
Thanks
Cliff
Not sure there is a function, but you could do 2 inline table loads. One would be an Add Only Load and the other a normal Load. They would each load a column called Flag and in the Add Only Load it loads a 0 and in the normal Load a 1. With a peek() assign the value of the Flag to a variable that you can then use to evaluate if it is a full (1) or partial (0) load.
Regards.