< Back

Get-DbaErrorLog

Mon Jan 13, 2020 11:03 am

NAME Get-DbaErrorLog



SYNOPSIS

Gets the "SQL Error Log" of an instance





SYNTAX

Get-DbaErrorLog [[-SqlInstance] <Sqlcollaborative.Dbatools.Parameter.DbaInstanceParameter[]>] [[-SqlCredential]

<Pscredential>] [[-LogNumber] <System.Int32[]>] [[-Source] <System.Object[]>] [[-Text] <String>] [[-After]

<Datetime>] [[-Before] <Datetime>] [-EnableException <Switch>] [<CommonParameters>]





DESCRIPTION

Gets the "SQL Error Log" of an instance. Returns all 10 error logs by default.





PARAMETERS

-After [<Datetime>]

Filter the results based on datetime value.



Required? false

Position? named

Default value

Accept pipeline input? False

Accept wildcard characters? false



-Before [<Datetime>]

Filter the results based on datetime value.



Required? false

Position? named

Default value

Accept pipeline input? False

Accept wildcard characters? false



-EnableException [<Switch>]

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.



Required? false

Position? named

Default value

Accept pipeline input? False

Accept wildcard characters? false



-LogNumber [<System.Int32[]>]

An Int32 value that specifies the index number of the error log required.

Error logs are listed 0 through 99, where 0 is the current error log and 99 is potential oldest log file.



SQL Server errorlog rollover defaults to 6, but can be increased to 99. https://docs.microsoft.com/en-us/sql/da

tabase-engine/configure-windows/scm-services-configure-sql-server-error-logs



Required? false

Position? named

Default value

Accept pipeline input? False

Accept wildcard characters? false



-Source [<System.Object[]>]

Filter results based on the Source of the error (e.g. Logon, Server, etc.)



Required? false

Position? named

Default value

Accept pipeline input? False

Accept wildcard characters? false



-SqlCredential [<Pscredential>]

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.



Required? false

Position? named

Default value

Accept pipeline input? False

Accept wildcard characters? false



-SqlInstance [<Sqlcollaborative.Dbatools.Parameter.DbaInstanceParameter[]>]

TThe target SQL Server instance or instances.



Required? false

Position? named

Default value

Accept pipeline input? False

Accept wildcard characters? false



-Text [<String>]

Filter results based on a pattern of text (e.g. "login failed", "error: 12345").



Required? false

Position? named

Default value

Accept pipeline input? False

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216).



INPUTS



OUTPUTS



NOTES





Tags: Instance, ErrorLog

Author: Chrissy LeMaire (@cl), netnerds.net



Website: https://dbatools.io

Copyright: (c) 2018 by dbatools, licensed under MIT

License: MIT https://opensource.org/licenses/MIT



-------------------------- EXAMPLE 1 --------------------------



PS C:\\>Get-DbaErrorLog -SqlInstance sql01\\sharepoint



Returns every log entry from sql01\\sharepoint SQL Server instance.

-------------------------- EXAMPLE 2 --------------------------



PS C:\\>Get-DbaErrorLog -SqlInstance sql01\\sharepoint -LogNumber 3, 6



Returns all log entries for log number 3 and 6 on sql01\\sharepoint SQL Server instance.

-------------------------- EXAMPLE 3 --------------------------



PS C:\\>Get-DbaErrorLog -SqlInstance sql01\\sharepoint -Source Logon



Returns every log entry, with a source of Logon, from sql01\\sharepoint SQL Server instance.

-------------------------- EXAMPLE 4 --------------------------



PS C:\\>Get-DbaErrorLog -SqlInstance sql01\\sharepoint -LogNumber 3 -Text "login failed"



Returns every log entry for log number 3, with "login failed" in the text, from sql01\\sharepoint SQL Server

instance.

-------------------------- EXAMPLE 5 --------------------------



PS C:\\>$servers = "sql2014","sql2016", "sqlcluster\\sharepoint"



PS C:\\> $servers | Get-DbaErrorLog -LogNumber 0



Returns the most recent SQL Server error logs for "sql2014","sql2016" and "sqlcluster\\sharepoint"

-------------------------- EXAMPLE 6 --------------------------



PS C:\\>Get-DbaErrorLog -SqlInstance sql01\\sharepoint -After '2016-11-14 00:00:00'



Returns every log entry found after the date 14 November 2016 from sql101\\sharepoint SQL Server instance.

-------------------------- EXAMPLE 7 --------------------------



PS C:\\>Get-DbaErrorLog -SqlInstance sql01\\sharepoint -Before '2016-08-16 00:00:00'



Returns every log entry found before the date 16 August 2016 from sql101\\sharepoint SQL Server instance.



RELATED LINKS

https://dbatools.io/Get-DbaErrorLog