commands

^

Get-DbaSsisExecutionHistory

Author Chris Tucker (@ChrisTuc47368095)
Availability Windows, Linux, macOS

 

Want to see the source code for this command? Check out Get-DbaSsisExecutionHistory on GitHub.
Want to see the Bill Of Health for this command? Check out Get-DbaSsisExecutionHistory.

Synopsis

Retrieves SSIS project and package execution History, and environments from one SQL Server to another.

Description

Retrieves SSIS project and package execution History, and environments from one SQL Server to another.

This command gets execution history for SSIS execution given one or more instances and can be filtered by Project, Environment,Folder or Status.

Syntax

Get-DbaSsisExecutionHistory
    [-SqlInstance] <DbaInstanceParameter[]>
    [[-SqlCredential] <PSCredential>]
    [[-Since] <DateTime>]
    [[-Status] <String[]>]
    [[-Project] <String[]>]
    [[-Folder] <String[]>]
    [[-Environment] <String[]>]
    [-EnableException]
    [<CommonParameters>]

 

Examples

 

Example: 1
PS C:\> Get-DbaSsisExecutionHistory -SqlInstance SMTQ01 -Folder SMTQ_PRC

Get all history items for SMTQ01 in folder SMTQ_PRC.

Example: 2
PS C:\> Get-DbaSsisExecutionHistory -SqlInstance SMTQ01 -Status Failed,Cancelled

Gets all failed or canceled executions for SMTQ01.

Example: 3
PS C:\> Get-DbaSsisExecutionHistory -SqlInstance SMTQ01,SMTQ02 -Status Failed,Cancelled

Shows what would happen if the command were executed and would return the SQL statement that would be executed per instance.

Required Parameters

-SqlInstance

The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

Alias
Required True
Pipeline false
Default Value

Optional Parameters

-SqlCredential

Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. For MFA support, please use Connect-DbaInstance.

Alias
Required False
Pipeline false
Default Value
-Since

Datetime object used to narrow the results to a date

Alias
Required False
Pipeline false
Default Value
-Status

Specifies a filter by status (created,running,cancelled,failed,pending,halted,succeeded,stopping,completed)

Alias
Required False
Pipeline false
Default Value
Accepted Values Created,Running,Cancelled,Failed,Pending,Halted,Succeeded,Stopping,Completed
-Project

Specifies a filter by project

Alias
Required False
Pipeline false
Default Value
-Folder

Specifies a filter by folder

Alias
Required False
Pipeline false
Default Value
-Environment

Specifies a filter by environment

Alias
Required False
Pipeline false
Default Value
-EnableException

By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

Alias
Required False
Pipeline false
Default Value False