Enable-SCDWJobCategory
Updated: January 14, 2013
Applies To: System Center 2012 - Service Manager, System Center 2012 SP1 - Service Manager
Enable-SCDWJobCategory
Syntax
Parameter Set: Default Enable-SCDWJobCategory [-JobCategoryName] <String> [-ComputerName <String> ] [-Credential <PSCredential> ] [-Confirm] [-WhatIf] [ <CommonParameters>]
Detailed Description
The Enable-SCDWJobCategory cmdlet enables all data warehouse jobs within the specified category.
Parameters
-ComputerName<String>
Specifies the name of the computer on which the System Center Data Access service is running. The user account that is defined in the Credential parameter must have access rights to the specified computer. You can omit this parameter only if the System Center Data Access Service is running on the same computer that has Service Manager installed.
|
Aliases |
none |
|
Required? |
false |
|
Position? |
named |
|
Default Value |
none |
|
Accept Pipeline Input? |
false |
|
Accept Wildcard Characters? |
false |
-Credential<PSCredential>
Specifies the credentials to use when you are connecting to the server on which the System Center Data Access service is running. The provided user account must have access to that server.
|
Aliases |
none |
|
Required? |
false |
|
Position? |
named |
|
Default Value |
none |
|
Accept Pipeline Input? |
false |
|
Accept Wildcard Characters? |
false |
-JobCategoryName<String>
Specifies the job category. You can use the Get-SCDWJob cmdlet to retrieve job categories. Valid job categories are Maintenance, Extract, Load, and Transform.
|
Aliases |
none |
|
Required? |
true |
|
Position? |
1 |
|
Default Value |
none |
|
Accept Pipeline Input? |
false |
|
Accept Wildcard Characters? |
false |
-Confirm
Prompts you for confirmation before executing the command.
|
Required? |
false |
|
Position? |
named |
|
Default Value |
false |
|
Accept Pipeline Input? |
false |
|
Accept Wildcard Characters? |
false |
-WhatIf
Describes what would happen if you executed the command without actually executing the command.
|
Required? |
false |
|
Position? |
named |
|
Default Value |
false |
|
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.
Inputs
The input type is the type of the objects that you can pipe to the cmdlet.
-
None.
You cannot pipe input to this cmdlet.
Outputs
The output type is the type of the objects that the cmdlet emits.
-
None.
This cmdlet does not generate any output.
Examples
-------------------- EXAMPLE 1 --------------------------
This command enables the jobs in the CubeProssing category.
PS C:\> Enable-SCDWJobCategory -ComputerName serverDW7 -JobCategoryName CubeProcessing
-------------------- EXAMPLE 2 --------------------------
This command provides information about enabled and disabled jobs in the job categories. If all the jobs in the category are enabled or disabled, the value in the IsEnabled column in the output reflects that value. If at least one job in a job category has an opposite IsEnabled value from the other jobs in the same category, the job category name is repeated with that job's opposite IsEnabled value (as is the case for the Load category shown in the example output). This is achieved by using the Unique parameter for the Select-Object command.
PS C:\> Get-SCDWJob -ComputerName serverDW7 | Select-Object -Property CategoryName, IsEnabled -Unique | Format-Table -Property CategoryName, IsEnabled -AutoSize
CategoryName IsEnabled
------------ ---------
Synchronization True
CubeProcessing True
Transform True
Maintenance True
Extract True
Load True
Load False
