Skip to content

Instantly share code, notes, and snippets.

@dankor
Created May 26, 2017 20:13
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dankor/bd8b944820a902e3f90a12231cb95a64 to your computer and use it in GitHub Desktop.
Save dankor/bd8b944820a902e3f90a12231cb95a64 to your computer and use it in GitHub Desktop.
pythonet cube processing
import CLR
from CLR.System.Reflection import Assembly
Assembly.LoadWithPartialName("AnalysisServices.DLL")
from CLR.Microsoft.AnalysisServices import Server
from CLR.Microsoft.AnalysisServices import ProcessType
serverName = 'localhost\sql2005'
dbName = 'MyDatabase'
# Connect to server
amoServer = Server()
amoServer.Connect(serverName)
# Connect to database
amoDb = amoServer.Databases[dbName]
amoDb.Process(ProcessType.ProcessFull)
@biomedatascientistSV
Copy link

Ok, thx, just to let you know, your above code also does not work. Will check the the documentation.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment