Skip to content

Commit

Permalink
Merge pull request #421 from erikdarlingdata/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
erikdarlingdata authored May 14, 2024
2 parents 5e3896d + 1a66bce commit d85bebb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ The SQL Server error log can have a lot of good information in it about what's g

The problem is that it's hard to know *what* to look for, and what else was going on once you filter it.

It's another notoriously bad Microoft GUI, just like Query Store and Extended Events.
It's another notoriously bad Microsoft GUI, just like Query Store and Extended Events.

I created sp_LogHunter to search through your error logs for the important stuff, with some configurability for you, and return everything ordered by log entry time.

Expand Down
2 changes: 1 addition & 1 deletion sp_QuickieStore/sp_QuickieStore.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2447,7 +2447,7 @@ BEGIN
IF @df = 1
BEGIN
SELECT
@where_clause += N'AND DATEPART(WEEKDAY, qsrs.last_execution_time) BETWEEN 1 AND 6' + @nc10;
@where_clause += N'AND DATEPART(WEEKDAY, qsrs.last_execution_time) BETWEEN 1 AND 5' + @nc10;
END;/*df 1*/

IF @df = 7
Expand Down

0 comments on commit d85bebb

Please sign in to comment.