1

从 .Net 客户端应用程序将用户输入的度量值(销售预测)写入 SQL Server Analysis Services OLAP 多维数据集的最简单方法是什么?

我知道可以使用 DML 语句更新基础事实表,并且可以重新处理多维数据集,但我正在寻找替代方案。

问候, 亚历山大

4

3 回答 3

1

我们使用数据透视表 Ranet OLAP 来编辑多维数据集数据。查看示例 Simple PivotTable Widget - PivotTaple with Updateable 将更新写入 OLAP 多维数据集

于 2012-10-10T14:10:57.280 回答
0

I nearly got into a project like this once. It did not go ahead, which I was very grateful for, after looking into the work involved. My advice to you is to run away!!!

You do not have to update actual cube data, or reprocess though - depending on how complex your user-entered data is going to be. I believe this is covered in Microsoft's standard MDX course, the notes of which you may be able to find online (sorry, I've since disposed of my copy). This depends on whether you want to learn MDX though, which is not easy.

于 2009-07-08T13:10:11.060 回答
0

我认为您可以使用 ADOMD .Net 进行回写。您可以使用 ADOMDCommand 来包装 UPDATE CUBE 语句。

ADOMD .Net

http://msdn.microsoft.com/en-us/library/ms123483(v=SQL.100).aspx

如果您一起进行太多更新,下面的链接将讨论此方法中的一些问题。

http://www.developmentnow.com/g/112_2006_1_0_0_677198/writeback-in-ADOMD-NET.htm

于 2011-02-23T12:43:08.547 回答