Hi,
We have some log files which is dynamic in pattern. We would like to filter the logdate field as, whenver the value is null, then that value should be equal to current timestamp less 6hrs.
In sql, its the same as
ISNULL(logdate,dateadd(hour,logdate,6))
I would like to know how can i accomplish this.
TIA