I have a report with 2 parameters from date and to date. I am using an oralce table with couple of millions of records.
I want the user to enter the from and to dates in the parameter and if the difference between the 2 dates is greater than 10 then the report should not access the database and terminate right away. Assuming the reason is if the difference between the dates is greater than 10 it takes too long to access the oracle database. If the difference between the dates is 10 or lesser the report should run and print the data. Is there a way I can achieve this without using Ora procedures?
I want the user to enter the from and to dates in the parameter and if the difference between the 2 dates is greater than 10 then the report should not access the database and terminate right away. Assuming the reason is if the difference between the dates is greater than 10 it takes too long to access the oracle database. If the difference between the dates is 10 or lesser the report should run and print the data. Is there a way I can achieve this without using Ora procedures?