Invoke-ProcessPartition cmdlet
Process a partition using a specific processing type variable.
Invoke-ProcessPartition [-Name] <System.String> [-Database] <System.String> [-ProcessType] <Microsoft.AnalysisServices.ProcessType> [-CubeName] <System.String> [-MeasureGroupName] <System.String> [<CommonParameters>]
Invoke-ProcessPartition –DatabasePartition <Microsoft.AnalysisServices.Partition> [-ProcessType] <Microsoft.AnalysisServices.ProcessType> [<CommonParameters>]
The Invoke-ProcessParition cmdlet processes a specific partition of an Analysis Services database, for a given cube and measure group. The ProcessType value determines the scope of the operation. When processing a partition, you must specify the processing type. For more information, see Processing Options and Settings (Analysis Services).
-Name <string>
Specifies the partition to be processed.
|
Required? |
true |
|
Position? |
0 |
|
Default value |
|
|
Accept pipeline input? |
false |
|
Accept wildcard characters? |
false |
-Database <string>
Specifies the database to which the cube belongs.
|
Required? |
true |
|
Position? |
1 |
|
Default value |
|
|
Accept pipeline input? |
false |
|
Accept wildcard characters? |
false |
-CubeName <string>
Specifies the cube to which the measure group belongs.
|
Required? |
true |
|
Position? |
2 |
|
Default value |
|
|
Accept pipeline input? |
false |
|
Accept wildcard characters? |
false |
-MeasureGroupName <string>
Specifies the measure group to which the partition belongs.
|
Required? |
true |
|
Position? |
2 |
|
Default value |
|
|
Accept pipeline input? |
false |
|
Accept wildcard characters? |
false |
-DatabasePartition <Microsoft.AnalysisServices.Partition>
Specifies the partition to be processed.
|
Required? |
true |
|
Position? |
2 |
|
Default value |
|
|
Accept pipeline input? |
false |
|
Accept wildcard characters? |
false |
-ProcessType <Microsoft.AnalysisServices.ProcessType>
Specifies the process type: ProcessFull, ProcessAdd, ProcessUpdate, ProcessIndexes, ProcessData, ProcessDefault, ProcessClear, ProcessStructure, ProcessCelarStructureOnly, ProcessScriptCache, ProcessRecalc.
|
Required? |
true |
|
Position? |
named |
|
Default value |
|
|
Accept pipeline input? |
false |
|
Accept wildcard characters? |
false |
<CommonParameters>
This cmdlet supports the common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, and -OutVariable. For more information, see About_CommonParameters.
PS SQL SERVER:\sqlas\locahost\default\Databases\AWTEST\Cubes\Adventure Works\MeasureGroups> Invoke-ProcessPartition –Name “Total_Orders_2003” –MeasureGroupname “Sales Order” –CubeName “Adventure Works” –database “AWTEST” –ProcessType “ProcessFull”
This command processes the partition Total_Orders_2003 in the Sales Orders measure group of the AWTEST database.