Skip to content

Commit e042881

Browse files
committed
Merge branch 'dev'
2 parents 6940172 + 3814cf9 commit e042881

22 files changed

+3688
-505
lines changed

Documentation/Development/Merge Blitz.ps1

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,18 @@ $FilePath = "C:\Users\edarl\OneDrive\Documents\GitHub\SQL-Server-First-Responder
44

55
#All Core Blitz Without sp_BlitzQueryStore
66
Get-ChildItem -Path "$FilePath" -Filter "sp_Blitz*.sql" |
7-
Where-Object { $_.FullName -notlike "*sp_BlitzQueryStore.sql*"} |
7+
Where-Object { $_.FullName -notlike "*sp_BlitzQueryStore.sql*" -and $_.FullName -notlike "*sp_BlitzInMemoryOLTP*"} |
88
ForEach-Object { Get-Content $_.FullName } |
99
Set-Content -Path "$FilePath\Install-Core-Blitz-No-Query-Store.sql" -Force
1010

1111
#All Core Blitz With sp_BlitzQueryStore
1212
Get-ChildItem -Path "$FilePath" -Filter "sp_Blitz*.sql" |
13+
Where-Object { $_.FullName -notlike "*sp_BlitzInMemoryOLTP*"} |
1314
ForEach-Object { Get-Content $_.FullName } |
1415
Set-Content -Path "$FilePath\Install-Core-Blitz-With-Query-Store.sql" -Force
1516

1617
#All Scripts
1718
Get-ChildItem -Path "$FilePath" -Filter "sp_*.sql" |
19+
Where-Object { $_.FullName -notlike "*sp_BlitzInMemoryOLTP*"} |
1820
ForEach-Object { Get-Content $_.FullName } |
1921
Set-Content -Path "$FilePath\Install-All-Scripts.sql" -Force

Documentation/Development/ReleaseProcess.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,19 @@ Well, useful is probably the wrong word. More like entertaining. Here we go.
4545

4646
* Copy the FRK scripts into BrentOzar.com's First Responder Kit zip file (Employees/Products/First Responder Kit/FirstResponderKit.zip)
4747
* Copy the FirstResponderKit.zip into Employees/Public.BrentOzar
48+
<<<<<<< HEAD
4849
* For PowerBi, only keep the .pbit file
4950
* Copy the Github release text into a WordPress blog post with the First Responder Kit Updates category. The nice thing about doing the Github release first is that you should be able to copy/paste the Github release page and the HTML should paste smoothly into the WordPress draft window, complete with links to the Github issues. At the end of the post, put a download now link that points to: https://www.brentozar.com/first-aid/
5051

52+
* Blog post support wording:
53+
54+
<h3>For Support</h3>
55+
56+
<strong>You can <a href="https://www.brentozar.com/first-aid/">download the updated FirstResponderKit.zip here</a>.</strong>
57+
58+
When you have questions about how the tools work, talk with the community in the <a href="https://sqlcommunity.slack.com/messages/firstresponderkit/" target="_blank" rel="noopener">#FirstResponderKit Slack channel</a>. If you need a free invite, hit <a href="http://SQLslack.com/" target="_blank" rel="noopener">SQLslack.com</a>. Be patient - it's staffed with volunteers who have day jobs, heh.
59+
When you find a bug or want something changed, read the <a href="https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/blob/master/CONTRIBUTING.md" target="_blank" rel="noopener">contributing.md</a> file.
60+
61+
When you have a question about what the scripts found, first make sure you read the "More Details" URL for any warning you find. We put a lot of work into documentation, and we wouldn't want someone to yell at you to go read the fine manual. After that, when you've still got questions about how something works in SQL Server, post a question at <a href="http://dba.stackexchange.com" target="_blank" rel="noopener">DBA.StackExchange.com</a> and the community (that includes us!) will help. Include exact errors and any applicable screenshots, your SQL Server version number (including the build #), and the version of the tool you're working with.
62+
>>>>>>> dev
63+

0 commit comments

Comments
 (0)