Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi experts,
Every day morning 7.30 am my dash board data Is refreshed but last data is not updated. how will you handle this section?
Hi Mani,
In your incremental load logic ,put this logic
Last_Updated_Date:
Load
Date(Max(DateField),'YYYY-MM-DD') as MaxDate
FROM
(qvd);
Let Last_Modified_Date=peek('MaxDate',0,Last_Updated_Date);
This will Capture the max date from the qvd.
Hope this will help you!!!
Thanks,
Shekar.