Configuring an MDX query on SSIS(在 SSIS 上配置 MDX 查询)
问题描述
我在配置 SSIS 任务以运行 MDX 查询时遇到问题.解析工作正常,但它不允许我显示查询的不同列来映射它
Hi I am having troubles configuring the SSIS task to run an MDX query. The parse works fine but it doesn't allow me to display the different columns of the query to map it
这是我使用的查询:
SELECT [Measures].[# Consumers] ON 0,
[Company].[Company Country Code].[Company Country Code].MEMBERS ON 1
FROM _CDM
抛出的错误是:
SQL 命令没有返回任何列信息
No Column information was returned by the SQL Command
错误快照
推荐答案
您可以在数据转换任务中使用 MDX Select 作为源.
两个重要的注意事项:
You can use MDX Select as a Source in Data Transformation Task.
Two important notes:
- 使用 MS OLE DB Provider for Analysis Services,为您的 SSAS DB 配置它
- 在 OLE DB Provider for AS 中,转到 All Properties 选项卡,选择 Advanced 部分并为 Extended 键入
Format=Tabular
属性.
- Use MS OLE DB Provider for Analysis Services, configure it for your SSAS DB
- In OLE DB Provider for AS, go to All Properties Tab, select Advanced section and type
Format=Tabular
for Extended Properties.
在这种情况下,您可以在 OLE DB Source Editor 中输入您的 MDX 查询.
重要 - Preview 按钮可能不起作用,您应该检查切换到 Columns 选项卡的查询元数据.
In this case, at OLE DB Source Editor you can input your MDX query.
Important - Preview button might not work, you should check query metadata switching to Columns tab.
这篇关于在 SSIS 上配置 MDX 查询的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 SSIS 上配置 MDX 查询
基础教程推荐
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- Sql Server 字符串到日期的转换 2021-01-01
- SQL Server 2016更改对象所有者 2022-01-01
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01