Synchronization SSAS中的多维数据集同步问题

Synchronization SSAS中的多维数据集同步问题,synchronization,ssas,cube,Synchronization,Ssas,Cube,我可以通过在服务器A上运行XMLA查询在服务器B和服务器C之间同步多维数据集吗?。。。。当前我收到一个错误:。请在下面找到XMLA脚本和错误输出 XMLA查询: 是的,这是可能的。我明白了 通过使用远程查询执行,我们可以从服务器A在服务器B上运行XMLA脚本 将整个XMLA脚本放入变量@XMLA和@LinkedSyncServerName=Server B中 在运行此查询之前,请测试链接的服务器连接 <Synchronize xmlns:xsi="http://www.w3.org/200

我可以通过在服务器A上运行XMLA查询在服务器B和服务器C之间同步多维数据集吗?。。。。当前我收到一个错误:。请在下面找到XMLA脚本和错误输出

XMLA查询:


是的,这是可能的。我明白了

通过使用远程查询执行,我们可以从服务器A在服务器B上运行XMLA脚本

将整个XMLA脚本放入变量@XMLA和@LinkedSyncServerName=Server B中 在运行此查询之前,请测试链接的服务器连接

<Synchronize xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/analysisservices/2003/engine">
<Source>
<ConnectionString>Provider=MSOLAP.5;Data Source='+@ServerName+';Integrated Security=SSPI;Initial Catalog='+@DatabaseID+'</ConnectionString>
<Object>
    <DatabaseID>'+@DatabaseID+'</DatabaseID>
</Object>
</Source>
<SynchronizeSecurity>CopyAll</SynchronizeSecurity>
<ApplyCompression>true</ApplyCompression>
</Synchronize>
OLE DB provider "MSOLAP" for linked server "Server A" returned message "Errors in the OLE DB provider. The data source or location is not valid. Provide a valid server to which to connect.
EXEC (''' + @XMLA + N''') AT [' + @LinkedSyncServerName + N']'