Automatic processing of cube after every 1 hour?

笑着哭i 提交于 2021-02-07 22:23:31

问题


I am using Microsoft SQL 2008. In Microsoft Visual Studio, I have created a cube. I want to schedule the processing of this cube after every 1 hour. Can somebody tell me how to achieve this?

Thanks.


回答1:


On the same solution with your SSAS project create an new SSIS project

  • Under SSIS Packages, open the dtsx file
  • Go to Control Flow and select the Analysis Services Processing Task from the SSIS toolbox
  • Add the Task to the control flow
  • On the connection manager add a new Analysis Services connection and point it to your database cube.
  • Edit the SSAS processing task and go to Proccessing Settings
  • Add the objects you want to proccess

I usually put two Analysis Services Prossecing Tasks - one for all the dimensions and another for the entire cube -

Now connect to the Intergration services on MSsQL management studio and add your project to the packages.

Follow this link to see how you can schedule via the MsSQL agent the SSIS Package.

And you are done!



来源:https://stackoverflow.com/questions/14451640/automatic-processing-of-cube-after-every-1-hour

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!