我的 SSAS 多维数据集中有许多对象,其中许多对象被创建为不可见的。例如:
CREATE MEMBER CURRENTCUBE.[Measures].[Latency Backcolor]
AS CASE
WHEN [Average Latency] > [Web Alert] THEN 6384849
WHEN [Average Latency] > [Web Warn] THEN 4577517
ELSE IIF ( [measures].[Query count] > NULL, 14876123, null)
END, VISIBLE = 0;
这是不可见的,并且:
CREATE MEMBER CURRENTCUBE.[Measures].[Average Latency]
AS IIF ([Measures].[Query Count] > 0, [Measures].[Total Ms] / [Measures].[Query Count], null),
FORMAT_STRING = "#,##0.00000;-#,##0.00000",
BACK_COLOR = [Latency Backcolor],
VISIBLE = 1,
DISPLAY_FOLDER = 'Overall',
ASSOCIATED_MEASURE_GROUP = 'Fact Raw FD';
这是。
我尝试了两种询问立方体的方法。首先,使用Microsoft.AnalysisServices.AdomdClient
命名空间。例如:
using Microsoft.AnalysisServices.AdomdClient;
var _connection = new AdomdConnection
{
ConnectionString = "Data Source=localhost;User ID=me;Password=secret;Initial Catalog=dbname",
ShowHiddenObjects = true
};
_connection.Open();
CubeDef _cube = _connection.Cubes["MyCube"];
// _cube.Measures
我也尝试过Microsoft.AnalysisServices
命名空间。例如:
using Microsoft.AnalysisServices;
Server server = new Server();
server.Connect( "Data Source=localhost;User ID=me;Password=secret" );
Database database = server.Databases.GetByName( "dbname" );
Cube cube = database.Cubes.FindByName( "MyCube" );
// cube.Dimensions
// cube.MeasureGroups[].Measures
以上所有内容都直接取自工作代码(尽管为了提出问题而减少到最低限度)。任何代码都可以完美运行,唯一的例外是我无法“看到”我的任何隐藏对象,例如Measures。我可以使用原始 MDX,我可以使用第二种技术从数据库中检索它。(严重)不利的一面是我必须自己解析它,这将是一个真正的嗡嗡声。必须有一种方法可以到达实际对象,而不必跳过这么多圈。
谢谢!