无法连接到多维数据集。
这是我的连接字符串:
<add name="OLAPConnectionString" providerName="MSOLAP"
connectionString="Data Source=servername;Initial Catalog=reportingCube; integrated security=true"></add>
以下错误:
在连接字符串中的索引0之后,预计会出现等号。
可能是什么问题?
答案 0 :(得分:3)
格式应使用Provider
&amp;不是ProviderName
以及更多更正,如下所示。
<add name="OLAPConnectionString" connectionString="Provider=MSOLAP;
Data Source=.;Initial Catalog=OMS; Integrated Security=True"/>
检查MSDN here。这个Another Link也描述了相同的内容。