0

サーバーからデータを取得する、ローカル マシンで実行されている SSAS キューブを更新しようとしています。

http://technet.microsoft.com/en-us/library/ff929186.aspxなどのいくつかの Web サイトを参照して支援を求めましたが、役に立たないようです。

以下は私のスクリプトと設定です:

サーバー: 127.0.0.1\MSSQLSERVER1

<Batch xmlns="http://schemas.microsoft.com/analysisservices/2003/engine">
<Parallel>
<Process xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ddl2="http://schemas.microsoft.com/analysisservices/2003/engine/2" xmlns:ddl2_2="http://schemas.microsoft.com/analysisservices/2003/engine/2/2" xmlns:ddl100_100="http://schemas.microsoft.com/analysisservices/2008/engine/100/100">
  <Object>
    <DatabaseID>db </DatabaseID>
    <CubeID>cube_name</CubeID>
  </Object>
  <Type>ProcessFull</Type>
  <WriteBackTableCreation>UseExisting</WriteBackTableCreation>
</Process>
</Parallel>
</Batch>

次のエラーが発生し続けます。

11/25/2013 08:34:57,プロセス ダイラー キューブ ジョブ,エラー,1,KARABOV-HP\MSSQLSERVER1,プロセス ダイラー キューブ ジョブ,プロセス キューブ,,ユーザーとして実行: NT Service\SQLAgent$MSSQLSERVER1. or the object does not exist." Source="Microsoft SQL Server 2012 Analysis Services" HelpFile="" />. The step failed.,00:00:00,0,0,,,,0

手伝ってください。

前もって感謝します。

4

1 に答える 1

0

Is it executing as the built-in SQL agent account? I doubt this account has admin permissions on SSAS (nor should it!). I recently had to configure scheduled, remote processing and these 2 links worked for me: http://technet.microsoft.com/en-us/library/ms178142.aspx, and http://technet.microsoft.com/en-us/library/ff929186.aspx

于 2013-12-03T22:01:51.950 に答える