We have data (>1mil rows) spread over 13 tables.
We have > 15 stored procedure (distributions) based on different columns (ex: region, year, etc) and a stored procedure for lots of aggregated data.
The tables have a unique key (int) that's used for INNER JOINS, clustered index on this ID and covering indexes on the columns that are used in the aggregated and distributions queries.
All these stored procedures run in @8 minutes, but I would need the result in under 1 minute.
A workaround that I am thinking of would be to store the results of the distributions and the aggregated data after the first run and then, just retrieve the data without any computations. This scenario would work just fine, but on the stored procedures (that are dynamic sp) we have filters and this makes this option a little cumbersome.
Do you have any suggestion on how would be best to approach this scenario?

