CRXI and SQL
My question is about being able to shorten report processing time. I have a report that has 7 groupings and displays a current case load per provider. It is 63 pages long and sorts by "team" and "provider." It has 10 coumns of information pertaining to each person listed on the providers case load many showing the latest date of a particular service.
The full 63 page report takes about 4 hours to run.
When I filter for one of the four teams it takes about an hour. If we filter for an individual provider it takes about 10 minutes.
I have noticed that the time the report is accessing the database is actually much shorter than the time it takes "recalucating summaries."
I went into the design and took out any summaries we weren't actually using. They were hidden in footers. However, this did not help much.
Does anyone have any advice on how I can shorten the processing time? I don't know what information you might further need but I would be happy to provide it.
The report selection formula for one of the teams would be this:
not ({Episode_Open_Case_View_dmc.consumer_ID} in [20227, 20228, 20229, 20345, 20357, 20435]) and
not ({Employee_View.people_last_name} in ["", "BEHAVIOR MANAGEMENT", "CONTRACTED", "FRITSCHY"]) and
{Employee_View.supervisor__employee_ID} = 43
The full report would just have more numbers in the last line.
My question is about being able to shorten report processing time. I have a report that has 7 groupings and displays a current case load per provider. It is 63 pages long and sorts by "team" and "provider." It has 10 coumns of information pertaining to each person listed on the providers case load many showing the latest date of a particular service.
The full 63 page report takes about 4 hours to run.
When I filter for one of the four teams it takes about an hour. If we filter for an individual provider it takes about 10 minutes.
I have noticed that the time the report is accessing the database is actually much shorter than the time it takes "recalucating summaries."
I went into the design and took out any summaries we weren't actually using. They were hidden in footers. However, this did not help much.
Does anyone have any advice on how I can shorten the processing time? I don't know what information you might further need but I would be happy to provide it.
The report selection formula for one of the teams would be this:
not ({Episode_Open_Case_View_dmc.consumer_ID} in [20227, 20228, 20229, 20345, 20357, 20435]) and
not ({Employee_View.people_last_name} in ["", "BEHAVIOR MANAGEMENT", "CONTRACTED", "FRITSCHY"]) and
{Employee_View.supervisor__employee_ID} = 43
The full report would just have more numbers in the last line.