我想知道如何在不使用分析服务的情况下使用任何关系数据源在 c# 中以编程方式生成 olap 多维数据集。一个具体的例子(我在网上任何地方都找不到的东西。)将不胜感激。
问问题
1493 次
1 回答
2
您可以使用 C# 和分析管理对象AMO以编程方式创建多维数据集:
// Create the Adventure Works cube
Cube cube = db.Cubes.FindByName("Adventure Works");
if (cube != null)
cube.Drop();
db.Cubes.Add("Adventure Works");
于 2013-05-06T07:05:21.590 回答