Skip to content

Commit

Permalink
Merge pull request #334 from erikdarlingdata/dev
Browse files Browse the repository at this point in the history
Logs and Parsers
  • Loading branch information
erikdarlingdata authored Dec 11, 2023
2 parents ad4353a + b8bdb7d commit 0d12714
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion sp_HealthParser/sp_HealthParser.sql
Original file line number Diff line number Diff line change
Expand Up @@ -689,7 +689,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
CROSS APPLY xml.xml_deadlock_report.nodes(''/event'') AS e(x)
CROSS APPLY (SELECT x.value( ''(@timestamp)[1]'', ''datetimeoffset'' )) ca ([utc_timestamp])
WHERE ca.utc_timestamp >= @start_date AND ca.utc_timestamp < @end_date
OPTION(RECOMPILE, USE HINT(''ENABLE_PARALLEL_PLAN_PREFERENCE''));';
OPTION(RECOMPILE);';

IF @debug = 1
BEGIN
Expand Down
3 changes: 1 addition & 2 deletions sp_LogHunter/sp_LogHunter.sql
Original file line number Diff line number Diff line change
Expand Up @@ -641,9 +641,8 @@ BEGIN
OR el.text LIKE N'Starting up database%'
OR el.text LIKE N'Buffer pool extension is already disabled%'
OR el.text LIKE N'Buffer Pool: Allocating % bytes for % hashPages.'
OR el.text LIKE N'Error: 18456%'
OR el.text LIKE N'%Severity: 1[0-8]%'
OR el.text LIKE N'SSPI%'
OR el.text LIKE N'Error: 18452%'
OR el.text IN
(
N'The Database Mirroring endpoint is in disabled or stopped state.',
Expand Down

0 comments on commit 0d12714

Please sign in to comment.