Expand only cube diagram, no processing

Is there a way to expand the cube diagram, but without cube processing. In Visual Studio, it seems that when you deploy the cube, the default is Deploy and Process.

The processing problem is time consuming, and my main goal is to simply write some MDX script and see if this works well against the cube structure. Processing the entire cube seems to kill a little more. So I ask.

+3
source share
2 answers

Yes, you can programmatically deploy only an MDX script. There is also a download to the Microsoft website called BIDS Assistant , which has the ability to do this. This is a visual studio plugin that provides various tools, including a tool for loading an MDX script into a cube.

+3
source

You can also set this deployment option in the project properties. The value must be set to "do not process".

+13
source

Source: https://habr.com/ru/post/1738010/


All Articles