我可以使用 TSQL 查询 OLAP 数据库还是需要 MDX?
我正在阅读一些关于数据仓库和 OLAP DB 的内容,有点不清楚我是否必须学习 MDX 才能查询 OLAP 数据库。其次,SSMS是查询用的工具吗?
SQL Server 2008 R2 (SSAS 2008)
I'm reading a little into data warehouses and OLAP DBs and it's a little unclear if I have to learn MDX to be able to query OLAP databases. Secondly, is SSMS the tool used for querying?
SQL Server 2008 R2 (SSAS 2008)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
SSAS 中的 MDX 查询是通过 SSMS 完成的。无法使用 TSQL 查询 Analysis Services 实例。
MDX querying in SSAS is done through SSMS. It is not possible to query an Analysis Services instance using TSQL.
Olap 查询与关系 SQL 有很大不同。
这本书很好地解释了 MDX:
http://www.microsoft.com/learning/en/us/book.aspx?ID=12914&locale=en-us
Olap queries are quite different than relational SQL.
This book does a great job of explaining MDX:
http://www.microsoft.com/learning/en/us/book.aspx?ID=12914&locale=en-us
您可以通过 OPENROWSET 查询在 SQL Server 中查询 SSAS。不支持或不可能通过 SQL 查询直接访问数据。
You can query SSAS in SQL Server through an OPENROWSET query. Direct data access through SQL queries is not supported, or possible.