Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have a app, scheduling the data every day at 4:00 PM, In DB some times data is not loaded for scheduling time, that time dashboard shows 0 records, In this situation if data is not loaded (DB has '0 ' records, or DB data is processing(Loading)), it will display the previous loaded data, if data is there then reload the data.
Advance thanks.
Ram
have u tried incremental load
Hi Anat,
Is there other way, using the if condition?
Thank You.
Ram
Hi @Ramu_i ,
You can for example store the loaded data in a file (qvd for example), check the size of the QVD file using "FileSize()>0" and repeat the process if the size is null
IF (FileSize('test.qvd')>0) THEN
ENF IF;
Hi Joseph,
I tried ,But it's not working.
Ram