Hi ,
Requirement: Report should be generated only one time per day.
Solution: I have to compare report generation date with sysdate, if its not equal then report will be processed only once per day.
Query:
select * from table1 where Trunc(report_generation_DATE) != TRunc(sysdate);
Whether this where condition will work fine in PLSQL.
i)Applying trunc on both side
ii) != --> condition