I have this SQL Server Agent job. There's a step in the job for processing an OLAP cube on a remote server. The step type is Analysis Services Command. Below is the command:
<Process xmlns="http://schemas.microsoft.com/analysisservices/2003/engine">
<Object>
<DatabaseID>DatabaseName</DatabaseID>
</Object>
<Type>ProcessFull</Type>
</Process>
When processing the step, it fails after 40 minutes with the below error message:
Executed as user: DOMAIN\user. Microsoft.AnalysisServices.Xmla.ConnectionException: The connection either timed out or was lost.
Now I granted this user Administrator Permissions on the remote Analysis Services server. I can connect to this server from within the Management Studio and process the database successfully.
But for some reason the job can't seem to process the cube.
Help?
Thanks.