Frage

I have been trying different solutions to this problem, including a completely custom data processing module; now I feel like I've run out of options and was wondering what people thought was the best approach. Here's what I am trying to do:

  • There is a Windows service that collects data from a fairly obscure accounting system. Reads a fairly large CSV and puts that into SQL Server.
  • What gets written out to the server are raw data. So in essence, we have daily account balances that are captured and persisted (the records are simple, consisting of an account name, balance and time stamp).
  • To process these data, we have a series of datapoints, each of which have a formula (ie. datapoint "farm widget sales" would have a formula like "123 + 456 + 789 - 978 - 654 - 321" where each of these numbers represent account numbers). We want to be able to apply different time dimensions to each of the datapoints, such as "Today", "MTD", "Q2 2011", etc.

This solution will ultimately be using PerformancePoint Services for its presentation layer.

What I am trying to figure out is what is the best approach to crunching these numbers, other than doing it myself in code. I've looked at PowerPivot and using SQL Server facilities for this but I don't know that they are capable of doing what I need.

The data processing would have to run through all of the raw data, and evaluate the formulae against the different time dimensions required. I have tried using a PowerPivot measure for this but I think the logic is too complicated for DAX (basically I would have to look at the formula column for a specific datapoint, figure out all the accounts I have to fetch, perform a sum based on time dimension, and then finally compute the formula itself).

Have any of you had any experience with a similar problem where you were able to leverage any of the many features of SharePoint?

War es hilfreich?

Lösung

I'd reckon you're better building an OLAP cube out of the raw data using SQL Server Analysis Services, then surfacing that through PerformancePoint or PowerPivot.

Within the OLAP cube you could build calculated measures written in MDX to apply the algorithm you need.

Andere Tipps

You gave your own answer when you said "dimensions":

Build a Cube in SSAS (SQL Server Analysis Services) that uses your raw data as it's datasource.

P.S. (the actual word used in SSAS describing a way of looking at data / filtering data is: a "dimension" :-D)

Excel (2010) in combination with this cube and Powerpivot, or SP2010 + Perf. Point (and PowerPivot) can then be used to build some pretty amazing KPI's, Dashboards etc.!

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit sharepoint.stackexchange
scroll top