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.
Retrieves SSIS project and package execution History, and environments from one SQL Server to another.
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.
Get-DbaSsisExecutionHistory
[-SqlInstance] <DbaInstanceParameter[]>
[[-SqlCredential] <PSCredential>]
[[-Since] <DateTime>]
[[-Status] <String[]>]
[[-Project] <String[]>]
[[-Folder] <String[]>]
[[-Environment] <String[]>]
[-EnableException]
[<CommonParameters>]
PS C:\> Get-DbaSsisExecutionHistory -SqlInstance SMTQ01 -Folder SMTQ_PRC
Get all history items for SMTQ01 in folder SMTQ_PRC.
PS C:\> Get-DbaSsisExecutionHistory -SqlInstance SMTQ01 -Status Failed,Cancelled
Gets all failed or canceled executions for SMTQ01.
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.
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 |
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 |
Datetime object used to narrow the results to a date
Alias | |
Required | False |
Pipeline | false |
Default Value |
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 |
Specifies a filter by project
Alias | |
Required | False |
Pipeline | false |
Default Value |
Specifies a filter by folder
Alias | |
Required | False |
Pipeline | false |
Default Value |
Specifies a filter by environment
Alias | |
Required | False |
Pipeline | false |
Default Value |
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 |