functions/Get-DbaDbTrigger.ps1

function Get-DbaDbTrigger {
    <#
.SYNOPSIS
Get all existing database triggers on one or more SQL instances.
 
.DESCRIPTION
Get all existing database triggers on one or more SQL instances.
 
.PARAMETER SqlInstance
The SQL Instance that you're connecting to.
 
.PARAMETER SqlCredential
SqlCredential object used to connect to the SQL Server as a different user.
 
.PARAMETER Database
The database(s) to process - this list is auto-populated from the server. If unspecified, all databases will be processed.
 
.PARAMETER ExcludeDatabase
The database(s) to exclude - this list is auto-populated from the server
 
.PARAMETER InputObject
Allow pipedline input from Get-DbaDatabase
 
.PARAMETER 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/ca
 
.NOTES
Tags: Database, Trigger
Author: Chrissy LeMaire (@cl), netnerds.net
Website: https://dbatools.io
Copyright: (C) Chrissy LeMaire, clemaire@gmail.com
License: MIT https://opensource.org/licenses/MIT
 
.LINK
 https://dbatools.io/Get-DbaDbTrigger
 
.EXAMPLE
Get-DbaDbTrigger -SqlInstance sql2017
 
Returns all database triggers
 
.EXAMPLE
Get-DbaDatabase -SqlInstance sql2017 -Database supa | Get-DbaDbTrigger
 
Returns all triggers for database supa on sql2017
 
.EXAMPLE
Get-DbaDbTrigger -SqlInstance sql2017 -Database supa
 
Returns all triggers for database supa on sql2017
#>

    [CmdletBinding()]
    param (
        [DbaInstanceParameter[]]$SqlInstance,
        [Alias("Credential")]
        [PSCredential]$SqlCredential,
        [object[]]$Database,
        [object[]]$ExcludeDatabase,
        [parameter(ValueFromPipeline)]
        [Microsoft.SqlServer.Management.Smo.Database[]]$InputObject,
        [switch]$EnableException
    )

    process {
        foreach ($Instance in $SqlInstance) {
            Write-Message -Level Verbose -Message "Connecting to $Instance"
            $InputObject += Get-DbaDatabase -SqlInstance $SqlInstance -SqlCredential $SqlCredential -Database $Database -ExcludeDatabase $ExcludeDatabase
        }

        foreach ($db in $InputObject) {
            try {
                foreach ($trigger in ($db.Triggers)) {
                    Add-Member -Force -InputObject $trigger -MemberType NoteProperty -Name ComputerName -value $db.Parent.ComputerName
                    Add-Member -Force -InputObject $trigger -MemberType NoteProperty -Name InstanceName -value $db.Parent.ServiceName
                    Add-Member -Force -InputObject $trigger -MemberType NoteProperty -Name SqlInstance -value $db.Parent.DomainInstanceName
                    Select-DefaultView -InputObject $trigger -Property ComputerName, InstanceName, SqlInstance, Name, IsEnabled, DateLastModified
                }
            }
            catch {
                Stop-Function -Message "Failure" -ErrorRecord $_ -Continue
            }
        }
    }
}