ssas - Process Data cube from job on SQL server -


i have sql server agent job on server(x) has step supposed process data cube on remote server(y).

whenever run job fails , says server(x) not have permission process cube or not exist. believe have job set correctly how give access on server(y) server(x) process cube?? below script using. "sql server analysis services command"

<batch xmlns="http://schemas.microsoft.com/analysisservices/2003/engine"> <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" xmlns:ddl200="http://schemas.microsoft.com/analysisservices/2010/engine/200" xmlns:ddl200_200="http://schemas.microsoft.com/analysisservices/2010/engine/200/200" xmlns:ddl300="http://schemas.microsoft.com/analysisservices/2011/engine/300" xmlns:ddl300_300="http://schemas.microsoft.com/analysisservices/2011/engine/300/300" xmlns:ddl400="http://schemas.microsoft.com/analysisservices/2012/engine/400" xmlns:ddl400_400="http://schemas.microsoft.com/analysisservices/2012/engine/400/400"> <object>   <databaseid>analysis services project1</databaseid>   <cubeid>s2e</cubeid> </object> <type>processfull</type> <writebacktablecreation>useexisting</writebacktablecreation> </process> </batch> 

when go add server(x) admin role on server(y) via object explorer cannot find server through check names button. please help.

found answer question. create proxy account , used process data cube.

dba stackexchange question/answer


Comments

Popular posts from this blog

Android : Making Listview full screen -

javascript - Parse JSON from the body of the POST -

javascript - How to Hide Date Menu from Datepicker in yii2 -