You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ First of all, welcome! We're excited that you'd like to contribute. How would yo
10
10
11
11
Everyone here is expected to abide by the [Contributor Covenant Code of Conduct](#the-contributor-covenant-code-of-conduct).
12
12
13
-
Wanna do something else, or have a question not answered here? Hop into Slack and ask us questions before you get started. [Join SQLServer.slack.com](https://sql-server-slack.herokuapp.com/), and we're in the [#FirstResponderKit channel](https://sqlserver.slack.com/messages/firstresponderkit/). We welcome newcomers, and there's always a way you can help.
13
+
Wanna do something else, or have a question not answered here? Hop into Slack and ask us questions before you get started. [Get an invite to SQLCommunity.slack.com](https://sqlps.io/slack/), and we're in the [#FirstResponderKit channel](https://sqlcommunity.slack.com/messages/firstresponderkit/). We welcome newcomers, and there's always a way you can help.
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,13 +13,13 @@ You're a DBA, sysadmin, or developer who manages Microsoft SQL Servers. It's you
13
13
14
14
To install, [download the latest release ZIP](https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/releases), then run the SQL files in the master database. (You can use other databases if you prefer.)
15
15
16
-
Only Microsoft-supported versions of SQL Server are supported here - sorry, 2005 and 2000. Some of these may work some of the time on 2005, but no promises, and don't file a support issue when they fail.
16
+
Only Microsoft-supported versions of SQL Server are supported here - sorry, 2005 and 2000. Some of these may work some of the time on 2005, but no promises, and don't file a support issue when they fail. (For example, we know the output tables won't work on SQL 2005 because one of the output fields is a DATETIMEOFFSET datatype, which isn't available in 2005.)
17
17
18
18
## How to Get Support
19
19
20
20
Everyone here is expected to abide by the [Contributor Covenant Code of Conduct](CONTRIBUTING.md#the-contributor-covenant-code-of-conduct).
21
21
22
-
Want to talk to the developers? [Join SQLServer.slack.com](https://sql-server-slack.herokuapp.com/), and we're in the [#FirstResponderKit channel](https://sqlserver.slack.com/messages/firstresponderkit/).
22
+
Want to talk to the developers? [Get an invite to SQLCommunity.slack.com](https://sqlps.io/slack/), and we're in the [#FirstResponderKit channel](https://sqlcommunity.slack.com/messages/firstresponderkit/).
23
23
24
24
Got a question? Ask it on [DBA.StackExchange.com](http://dba.stackexchange.com). Tag your question with the script name, like sp_Blitz, sp_BlitzCache, sp_BlitzIndex, etc, and we’ll be alerted of it right away.
25
25
@@ -53,7 +53,7 @@ In addition to the [parameters common to many of the stored procedures](#paramet
Checks for the existence of a table DBAtools.dbo.BlitzResults, creates it if necessary, then adds the output of sp_Blitz into this table. This table is designed to support multiple outputs from multiple servers, so you can track your server's configuration history over time.
@@ -3614,6 +3593,32 @@ IF @ProductVersionMajor >= 10 AND @ProductVersionMinor >= 50
3614
3593
FROM [?].sys.database_query_store_options WHERE desired_state = 0 AND ''?'' NOT IN (''master'', ''model'', ''msdb'', ''tempdb'', ''DWConfiguration'', ''DWDiagnostics'', ''DWQueue'', ''ReportServer'', ''ReportServerTempDB'')';
(''SQL 2016 RTM has a bug involving dumps that happen every time Query Store cleanup jobs run.'')
3619
+
FROM [?].sys.database_query_store_options WHERE desired_state <> 0 AND ''?'' NOT IN (''master'', ''model'', ''msdb'', ''tempdb'', ''DWConfiguration'', ''DWDiagnostics'', ''DWQueue'', ''ReportServer'', ''ReportServerTempDB'')';
3620
+
END
3621
+
3617
3622
3618
3623
IFNOTEXISTS ( SELECT1
3619
3624
FROM #SkipChecks
@@ -5509,10 +5514,10 @@ IF @ProductVersionMajor >= 10 AND NOT EXISTS ( SELECT 1
5509
5514
,'http://BrentOzar.com/go/waits'ASURL
5510
5515
, Details =CAST(CAST(SUM(os.wait_time_ms/1000.0/60/60) OVER (PARTITIONBYos.wait_type) ASNUMERIC(18,1)) ASNVARCHAR(20)) +N' hours of waits, '+
5511
5516
CAST(CAST((SUM(60.0*os.wait_time_ms) OVER (PARTITIONBYos.wait_type) ) / @MSSinceStartup ASNUMERIC(18,1)) ASNVARCHAR(20)) +N' minutes average wait time per hour, '+
5512
-
CAST(CAST(
5517
+
/*CAST(CAST(
5513
5518
100.* SUM(os.wait_time_ms) OVER (PARTITION BY os.wait_type)
5514
5519
/ (1. * SUM(os.wait_time_ms) OVER () )
5515
-
ASNUMERIC(18,1)) ASNVARCHAR(40)) +N'% of waits, '+
5520
+
AS NUMERIC(18,1)) AS NVARCHAR(40)) + N'% of waits, ' + */
5516
5521
CAST(CAST(
5517
5522
100. *SUM(os.signal_wait_time_ms) OVER (PARTITIONBYos.wait_type)
0 commit comments