Skip to content

Commit 2ee15e7

Browse files
authored
Merge pull request #442 from BrentOzarULTD/dev
2016-09 September release.
2 parents e3ce691 + 7f8602c commit 2ee15e7

File tree

10 files changed

+1019
-644
lines changed

10 files changed

+1019
-644
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
**Do you want to request a *feature* or report a *bug*?**
2+
3+
**What is the current behavior?**
4+
5+
**If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem via https://jsfiddle.net
6+
7+
**What is the expected behavior?**
8+
9+
**Which versions of SQL Server and which OS are affected by this issue? Did this work in previous versions of our procedures?**

.github/PULL_REQUEST_TEMPLATE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
Fixes # .
2+
3+
Changes proposed in this pull request:
4+
-
5+
-
6+
-
7+
8+
How to test this code:
9+
-
10+
-
11+
-
12+
13+
Has been tested on (remove any that don't apply):
14+
- Case-sensitive SQL Server instance
15+
- SQL Server 2008
16+
- SQL Server 2008 R2
17+
- SQL Server 2012
18+
- SQL Server 2014
19+
- SQL Server 2016
20+
- Amazon RDS
21+
- Azure SQL DB

CONTRIBUTING.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Wanna do something else, or have a question not answered here? Hop into Slack an
1414

1515
## How to Report Bugs or Request Enhancements
1616

17-
[Check out the Github issues list.](https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/issues) Search for what you're interested in - there may already be an issue for it. Make sure to search through closed issues, too, because we often decline things that aren't a good fit for these tools.
17+
Check out the [Github issues list]. Search for what you're interested in - there may already be an issue for it. Make sure to search through closed issues, too, because we often decline things that aren't a good fit for these tools.
1818

1919
If you can't find a similar issue, go ahead and open your own. Include as much detail as you can - what you're seeing now, and what you'd like to see.
2020

@@ -24,11 +24,11 @@ When requesting new checks, keep in mind that we want to focus on:
2424
* Performance issues or reliability risks - if it's just a setting we don't agree with, let's set that aside
2525
* Things that end users or managers will notice - if we're going to have someone change a setting on their system, we want it to be worth their time
2626

27-
Now [head on over to the Github issues list](https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/issues) and get started.
27+
Now head on over to the [Github issues list] and get started.
2828

2929
## How to Write New T-SQL Checks
3030

31-
Before you code, check the [Github issues list](https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/issues) for what you're trying to do - there may already be an issue for it. Make sure to search through closed issues, too, because we often decline things that aren't a good fit for these tools.
31+
Before you code, check the [Github issues list] for what you're trying to do - there may already be an issue for it. Make sure to search through closed issues, too, because we often decline things that aren't a good fit for these tools.
3232

3333
If you've got a new idea that isn't covered in an existing issue, open a Github issue for it. Outline what you'd like to do, and how you'd like to code it. This just helps make sure other users agree that it's a good idea to add to these tools.
3434

@@ -101,4 +101,5 @@ This Code of Conduct is adapted from the [Contributor Covenant][homepage], versi
101101
available at [http://contributor-covenant.org/version/1/4][version]
102102

103103
[homepage]: http://contributor-covenant.org
104-
[version]: http://contributor-covenant.org/version/1/4/
104+
[version]: http://contributor-covenant.org/version/1/4/
105+
[Github issues list]:https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/issues

Documentation/sp_Blitz Checks by Priority.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ If you want to change anything about a check - the priority, finding, URL, or ID
9999
| 170 | File Configuration | TempDB Has >16 Data Files | http://BrentOzar.com/go/tempdb | 175 |
100100
| 170 | File Configuration | TempDB on C Drive | http://BrentOzar.com/go/drivec | 25 |
101101
| 170 | File Configuration | TempDB Only Has 1 Data File | http://BrentOzar.com/go/tempdb | 40 |
102+
| 170 | File Configuration | TempDB Unevenly Sized Data Files | http://BrentOzar.com/go/tempdb | 183 |
102103
| 170 | File Configuration | Uneven File Growth Settings in One Filegroup | http://BrentOzar.com/go/grow | 42 |
103104
| 170 | Reliability | Database Files on Network File Shares | http://BrentOzar.com/go/nas | 148 |
104105
| 170 | Reliability | Database Files Stored in Azure | http://BrentOzar.com/go/azurefiles | 149 |
@@ -249,9 +250,10 @@ If you want to change anything about a check - the priority, finding, URL, or ID
249250
| 250 | Server Info | Server Name | http://BrentOzar.com/go/servername | 130 |
250251
| 250 | Server Info | Services | | 83 |
251252
| 250 | Server Info | SQL Server Last Restart | | 88 |
253+
| 250 | Server Info | Server Last Restart | | 91 |
252254
| 250 | Server Info | SQL Server Service | | 85 |
253255
| 250 | Server Info | Virtual Server | http://BrentOzar.com/go/virtual | 103 |
254256
| 250 | Server Info | Windows Version | | 172 |
255257
| 254 | Rundate | (Current Date) | | 156 |
256258
| 100 | Performance | Shrink Database Step In Maintenance Plan | http://BrentOzar.com/go/autoshrink | 180 |
257-
| 100 | Performance | Repetitive Maintenance Tasks | https://ola.hallengren.com | 181 |
259+
| 100 | Performance | Repetitive Maintenance Tasks | https://ola.hallengren.com | 181 |

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Checks for the existence of a table DBAtools.dbo.BlitzResults, creates it if nec
6262

6363
```SQL
6464
CREATE TABLE dbo.BlitzChecksToSkip (
65-
ServerName NVACHAR(128),
65+
ServerName NVARCHAR(128),
6666
DatabaseName NVARCHAR(128),
6767
CheckID INT
6868
);

0 commit comments

Comments
 (0)