I have created a set of metadata objects and exposed it to a set of users to create adhoc reports. The user can use the meta data objects and create their own reports.
However, the problem is - the objects correspond to tables having millions of records for last 5 years. I want that the business user should be able to access data only for last 6 months, so that their reports do not get flooded with excessive data. At the same time, my database & application server need not suffer due to excessive load.
How can this be done?
Thanks.