Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我执行以下MDX脚本
MDX
SELECT FROM [CubeName]
它返回一个答案,给出默认度量中所有成员的总数。
我可以写一个MDX语句告诉我默认度量是什么,还是不能用 查询元数据MDX?
尝试这个
WITH MEMBER [Measures].[DefaultMemberName] AS [Measures].DefaultMember.Member_Name SELECT [Measures].[DefaultMemberName] ON 0 FROM [YourCube]