up vote 0 down vote favorite
share [g+] share [fb]

I am about to migrate a bunch of seriously over-complex Reports (MS SQL report server over some horrible stored procedures) to something more BI based. I was wondering if anybody had any pointers, gotchas, or general advice on the best way to do this. Thanks.

link|improve this question

feedback

closed as off topic by Craig Sep 11 '08 at 16:13

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

2 Answers

up vote 1 down vote accepted
  • Read up on Star schema's but starting out with one huge flat table is a quick and dirty place to start.
  • Don't be afraid to replicates data for Performance.
  • If you are not using a query tool MDX can be a hurdle, dumping your sprocs to flat tables and reporting from them may help get you to the next step.
  • If your sprocs are providing live data any type of aggregate (cubes) will have some type of data delay and your users may be sensitive to that.
link|improve this answer
feedback

Take a look at Analysis Services

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.