Invoke-ProcessCube
Conducts the Process operation on a specified Cube of a specific database with a specific ProcessType value.
Invoke-ProcessCube [-Name*] <System.String> [-Database*] <System.String> [-ProcessType*]<Microsoft.AnalysisServices.ProcessType> [<CommonParameters>]
Invoke-ProcessCube -Database*Cube <Microsoft.AnalysisSevices.Cube> [-ProcessType*]<Microsoft.AnalysisServices.ProcessType> [<CommonParameters>]
Conducts the Process operation on a specific Cube of a specific database with a specific ProcessType value depending upon the input values.
Parameters |
---|
-Name <System.String>
|
-Database <System.String>
|
-ProcessType <Microsoft.AnalysisServices.ProcessType>
|
-DatabaseCube <Microsoft.AnalysisSevices.Cube>
|
<CommonParameters>
|
Examples
- The above cmdlets retrieves the specified cube object and processes it:
PS SQLSERVER:SQLASMachineNameInstanceDatabasesDB1CubesCube1> Get-Item .| Invoke-ProcessCube -ProcessType:ProcessDefault
- The above cmdlet processes the cube myCube available under database Db1:
PS SQLSERVER:SQLASMachineNameInstanceDatabasesDB1Cubes> Invoke-ProcessCube -Name "myCube" -Database "Db1" -ProcessType "ProcessDefault"