I am trying to refresh a SSAS cube running on my local machine, that gets its data from the server.
I have reviewed a few websites such as http://technet.microsoft.com/en-us/library/ff929186.aspx for assistance but it doesnt seem to help.
Below is my script and settings:
server: 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>
it keeps throwing out an error of:
11/25/2013 08:34:57,process dailer cube job,Error,1,KARABOV-HP\MSSQLSERVER1,process dailer cube job,process cube,,Executed as user: 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
Please assist.
Thanks in advance.
NT Service\SQLAgent$MSSQLSERVER1
according to the error message) does not have the right to process the cube. – FrankPl