Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Jonathan,
Yes, this is what i mean.
e.g : I want to look at log's analysis for last week until yesterday. But I want the start time is at 24/08/16 8AM last week until 31/08/16 8AM yesterday.
If its in the Load script, we can make use of variables:
LET vDateStart = DayStart(Today()-7,0,0.33333333);
LET vDateEnd = DayStart(Today(),0,0.33333333);
Load
...........
...........
From
......................................
Where
where Date >= '$(vDateStart)' and Date<'vDateEnd'
;
Thank you Jonathan. I will try this first. Will get back to you after i try.