Get-SCDWJobSchedule

Gets scheduling information for data warehouse jobs.

Syntax

Get-SCDWJobSchedule
   [-JobName <String>]
   [-ComputerName <String>]
   [<CommonParameters>]

Description

The Get-SCDWJobSchedule cmdlet provides scheduling information for data warehouse jobs. You can either use the JobName parameter to specify a specific job or omit that parameter to display scheduling information for all data warehouse jobs.

Examples

Example 1: Display the job schedule for a job

PS C:\>Get-SCDWJobSchedule -ComputerName "serverDW72" -JobName "Transform.Common"

This command displays the job schedule for the Transform.Common job.

Example 2: Display all jobs and their run times

PS C:\>Get-SCDWJobSchedule -ComputerName "serverDW72" | Format-Table -Property Name, LastRunTime, NextRunTime -AutoSize

This command displays all jobs and their run times.

Parameters

-ComputerName

Specifies the name of the computer on which the System Center Data Access service is running. You can omit this parameter only if the System Center Data Access Service is running on the same computer that has Service Manager installed.

Type:String
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-JobName

Specifies the job name for which to display scheduling information.

Type:String
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

Inputs

None.

You cannot pipe input to this cmdlet.

Outputs

Microsoft.EnterpriseManagement.OrchestrationJob