Click here to Skip to main content
15,867,453 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
My job is to create and store reports created from log table. Application is in production for a few years now. After a while as log grows report generation becomes slower. Our solution was to delete some records from a log table after a while. I have the source code of application and I need to make log last longer before deletion , or if possible make reports generate faster.
Posted

1 solution

Best idea I know of is to keep your log in multiple tables. I guess you need to do a report only for defined time scope. Keep fresh data in one table and older data in different table. Your report generation time will be reduced.
Try pre-processing the data and then keeping only the report results vs complete data.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900