Visual Build Pro-使用MySQL数据源构建Analysis Services多维数据集

Visual Build Pro-使用MySQL数据源构建Analysis Services多维数据集,build,ssas,mysql-connector,mysql.data,visual-build-professional,Build,Ssas,Mysql Connector,Mysql.data,Visual Build Professional,我正在尝试使用Visual build Pro v7为我创建的Analysis Services多维数据集创建一个构建脚本。使用以下构建脚本步骤将多维数据集部署到我的本地计算机而不会出现问题 除了替换.dwproj.user文件中的目标服务器、备份和删除多维数据集可能的早期版本的任何跟踪之外,我的构建脚本只包含以下步骤: Step 1 : "%VS2008IDE%\devenv.exe" "%PROJDIR%\%CUBE_NAME%.sln" /Build Step 2 : "%SSAS_De

我正在尝试使用Visual build Pro v7为我创建的Analysis Services多维数据集创建一个构建脚本。使用以下构建脚本步骤将多维数据集部署到我的本地计算机而不会出现问题

除了替换.dwproj.user文件中的目标服务器、备份和删除多维数据集可能的早期版本的任何跟踪之外,我的构建脚本只包含以下步骤:

Step 1 : "%VS2008IDE%\devenv.exe" "%PROJDIR%\%CUBE_NAME%.sln" /Build 
Step 2 : "%SSAS_Deploy_EXE%" "%PROJDIR%\%CUBE_NAME%\bin\%CUBE_NAME%.asdatabase" /s /o:"%PROJDIR%\deployscript.xmla"
Step 3 : "%ASCMD_LOCATION%" -S %CUBE_SQL_INSTANCE% -U DOMAIN\%UID% -P %PWD% -i "%PROJDIR%\deployscript.xmla"
多维数据集的数据源是MySQL数据库。部署到远程服务器时,生成在步骤3失败

我已经在服务器上下载并安装了MySql Connector/Net,但是当我运行构建脚本时,我得到了以下错误:

<return xmlns="urn:schemas-microsoft-com:xml-analysis">
    <results xmlns="http://schemas.microsoft.com/analysisservices/2003/xmla-multipleresults">
        <root xmlns="urn:schemas-microsoft-com:xml-analysis:empty"/>
        <root xmlns="urn:schemas-microsoft-com:xml-analysis:empty">
            <Exception xmlns="urn:schemas-microsoft-com:xml-analysis:exception" />
            <Messages xmlns="urn:schemas-microsoft-com:xml-analysis:exception">
                <Error ErrorCode="3238002695" Description="Internal error: The operation terminated unsuccessfully." Source="Microsoft SQL Server 2008 R2 Analysis Services" HelpFile="" />
                <Error ErrorCode="3239116921" Description="Errors in the back-end database access module. The managed provider 'MySql.Data.MySqlClient' could not be instantiated." Source="Microsoft SQL Server 2008 R2 Analysis Services" HelpFile="" />
                <Error ErrorCode="3239182436" Description="Errors in the high-level relational engine. A connection could not be made to the data source with the DataSourceID of 'Linkdex', Name of 'Linkdex'." Source="Microsoft SQL Server 2008 R2 Analysis Services" HelpFile="" />
                <Error ErrorCode="3240034316" Description="Errors in the OLAP storage engine: An error occurred while the dimension, with the ID of 'Keyword', Name of 'Keyword' was being processed." Source="Microsoft SQL Server 2008 R2 Analysis Services" HelpFile="" />
                <Error ErrorCode="3240034317" Description="Errors in the OLAP storage engine: An error occurred while the 'Project Id' attribute of the 'Keyword' dimension from the 'LinkDexCube' database was being processed." Source="Microsoft SQL Server 2008 R2 Analysis Services" HelpFile="" />
                <Error ErrorCode="3239837698" Description="Server: The operation has been cancelled." Source="Microsoft SQL Server 2008 R2 Analysis Services" HelpFile="" />
            </Messages>
        </root>
        <root xmlns="urn:schemas-microsoft-com:xml-analysis:empty"/>
    </results>
</return>
当我检查.asdatabase和.xmla时,我可以看到ConnectionString中的用户id和密码详细信息已被删除。我不知道为什么会这样,或者发生在哪里

有人知道发生了什么吗?这可能是权限问题还是与mysql连接器有关?还是第三种选择