Skip to content

Commit c3c2510

Browse files
committed
Merge branch 'dev'
2 parents 89cdb34 + 1860fde commit c3c2510

22 files changed

+4131
-896
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
5+
---
6+
7+
**Version of the script**
8+
Look in the stored procedure, and it'll have a version date & number near the top. Put that in here. If it's not the current version (dated in the last month), then upgrade to the current version and test that before reporting a bug - we fix a lot of stuff in each new build. We'll flat out close bug reports for older builds.
9+
10+
**What is the current behavior?**
11+
12+
**If the current behavior is a bug, please provide the steps to reproduce.**
13+
14+
**What is the expected behavior?**
15+
16+
**Which versions of SQL Server and which OS are affected by this issue? Did this work in previous versions of our procedures?**
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
5+
---
6+
7+
**Is your feature request related to a problem? Please describe.**
8+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
9+
10+
**Describe the solution you'd like**
11+
A clear and concise description of what you want to happen.
12+
13+
**Describe alternatives you've considered**
14+
A clear and concise description of any alternative solutions or features you've considered.
15+
16+
**Are you ready to build the code for the feature?**
17+
As much as we'd love to build everything that everyone wants for free, we need your help. Open source is built with your help and code. Are you ready to commit time to this project? Have you got existing code you can help contribute to solve the problem?

CODE_OF_CONDUCT.md

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
# Contributor Covenant Code of Conduct
2+
3+
## Our Pledge
4+
5+
In the interest of fostering an open and welcoming environment, we as
6+
contributors and maintainers pledge to making participation in our project and
7+
our community a harassment-free experience for everyone, regardless of age, body
8+
size, disability, ethnicity, sex characteristics, gender identity and expression,
9+
level of experience, education, socio-economic status, nationality, personal
10+
appearance, race, religion, or sexual identity and orientation.
11+
12+
## Our Standards
13+
14+
Examples of behavior that contributes to creating a positive environment
15+
include:
16+
17+
* Using welcoming and inclusive language
18+
* Being respectful of differing viewpoints and experiences
19+
* Gracefully accepting constructive criticism
20+
* Focusing on what is best for the community
21+
* Showing empathy towards other community members
22+
23+
Examples of unacceptable behavior by participants include:
24+
25+
* The use of sexualized language or imagery and unwelcome sexual attention or
26+
advances
27+
* Trolling, insulting/derogatory comments, and personal or political attacks
28+
* Public or private harassment
29+
* Publishing others' private information, such as a physical or electronic
30+
address, without explicit permission
31+
* Other conduct which could reasonably be considered inappropriate in a
32+
professional setting
33+
34+
## Our Responsibilities
35+
36+
Project maintainers are responsible for clarifying the standards of acceptable
37+
behavior and are expected to take appropriate and fair corrective action in
38+
response to any instances of unacceptable behavior.
39+
40+
Project maintainers have the right and responsibility to remove, edit, or
41+
reject comments, commits, code, wiki edits, issues, and other contributions
42+
that are not aligned to this Code of Conduct, or to ban temporarily or
43+
permanently any contributor for other behaviors that they deem inappropriate,
44+
threatening, offensive, or harmful.
45+
46+
## Scope
47+
48+
This Code of Conduct applies both within project spaces and in public spaces
49+
when an individual is representing the project or its community. Examples of
50+
representing a project or community include using an official project e-mail
51+
address, posting via an official social media account, or acting as an appointed
52+
representative at an online or offline event. Representation of a project may be
53+
further defined and clarified by project maintainers.
54+
55+
## Enforcement
56+
57+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
58+
reported by contacting the project team at [email protected]. All
59+
complaints will be reviewed and investigated and will result in a response that
60+
is deemed necessary and appropriate to the circumstances. The project team is
61+
obligated to maintain confidentiality with regard to the reporter of an incident.
62+
Further details of specific enforcement policies may be posted separately.
63+
64+
Project maintainers who do not follow or enforce the Code of Conduct in good
65+
faith may face temporary or permanent repercussions as determined by other
66+
members of the project's leadership.
67+
68+
## Attribution
69+
70+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71+
available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
72+
73+
[homepage]: https://www.contributor-covenant.org
74+
75+
For answers to common questions about this code of conduct, see
76+
https://www.contributor-covenant.org/faq
Lines changed: 29 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,27 @@
11
/*Blitz*/
2-
EXEC sp_Blitz @CheckUserDatabaseObjects = 1, @CheckServerInfo = 1
2+
EXEC dbo.sp_Blitz @CheckUserDatabaseObjects = 1, @CheckServerInfo = 1;
33

4-
EXEC sp_Blitz @CheckUserDatabaseObjects = 1, @CheckServerInfo = 1, @OutputDatabaseName = 'DBAtools', @OutputSchemaName = 'dbo', @OutputTableName = 'Blitz'
4+
EXEC dbo.sp_Blitz @CheckUserDatabaseObjects = 1, @CheckServerInfo = 1, @OutputDatabaseName = 'DBAtools', @OutputSchemaName = 'dbo', @OutputTableName = 'Blitz';
55

6-
EXEC sp_Blitz @CheckUserDatabaseObjects = 1, @CheckServerInfo = 1, @Debug = 1
6+
EXEC dbo.sp_Blitz @CheckUserDatabaseObjects = 1, @CheckServerInfo = 1, @Debug = 1;
77

8-
EXEC sp_Blitz @CheckUserDatabaseObjects = 1, @CheckServerInfo = 1, @Debug = 2
8+
EXEC dbo.sp_Blitz @CheckUserDatabaseObjects = 1, @CheckServerInfo = 1, @Debug = 2;
99

1010
/*BlitzWho*/
1111

12-
EXEC dbo.sp_BlitzWho @ExpertMode = 1, @Debug = 1
12+
EXEC dbo.sp_BlitzWho @ExpertMode = 1, @Debug = 1;
13+
14+
EXEC dbo.sp_BlitzWho @ExpertMode = 0, @Debug = 1;
15+
16+
EXEC dbo.sp_BlitzWho @OutputDatabaseName = 'DBAtools', @OutputSchemaName = 'dbo', @OutputTableName = 'BlitzWho_Results';
1317

14-
EXEC dbo.sp_BlitzWho @ExpertMode = 0, @Debug = 1
1518

1619
/*BlitzFirst*/
17-
EXEC sp_BlitzFirst @Seconds = 5, @ExpertMode = 1
20+
EXEC dbo.sp_BlitzFirst @Seconds = 5, @ExpertMode = 1;
1821

19-
EXEC sp_BlitzFirst @SinceStartup = 1
22+
EXEC dbo.sp_BlitzFirst @SinceStartup = 1;
2023

21-
EXEC sp_BlitzFirst @Seconds = 5, @ExpertMode = 1, @ShowSleepingSPIDs = 1
24+
EXEC dbo.sp_BlitzFirst @Seconds = 5, @ExpertMode = 1, @ShowSleepingSPIDs = 1;
2225

2326

2427
EXEC dbo.sp_BlitzFirst @OutputDatabaseName = 'DBAtools',
@@ -31,42 +34,42 @@ EXEC dbo.sp_BlitzFirst @OutputDatabaseName = 'DBAtools',
3134
@OutputTableRetentionDays = 14;
3235

3336
/*BlitzIndex*/
34-
EXEC sp_BlitzIndex @GetAllDatabases = 1, @Mode = 4
37+
EXEC dbo.sp_BlitzIndex @GetAllDatabases = 1, @Mode = 4;
3538

36-
EXEC sp_BlitzIndex @DatabaseName = 'StackOverflow2010', @Mode = 4
39+
EXEC dbo.sp_BlitzIndex @DatabaseName = 'StackOverflow2010', @Mode = 4;
3740

38-
EXEC sp_BlitzIndex @DatabaseName = 'StackOverflow2010', @Mode = 4, @SkipPartitions = 0, @SkipStatistics = 0
41+
EXEC dbo.sp_BlitzIndex @DatabaseName = 'StackOverflow2010', @Mode = 4, @SkipPartitions = 0, @SkipStatistics = 0;
3942

40-
EXEC sp_BlitzIndex @GetAllDatabases = 1, @Mode = 1
43+
EXEC dbo.sp_BlitzIndex @GetAllDatabases = 1, @Mode = 1;
4144

42-
EXEC sp_BlitzIndex @GetAllDatabases = 1, @Mode = 2
45+
EXEC dbo.sp_BlitzIndex @GetAllDatabases = 1, @Mode = 2;
4346

44-
EXEC sp_BlitzIndex @GetAllDatabases = 1, @Mode = 3
47+
EXEC dbo.sp_BlitzIndex @GetAllDatabases = 1, @Mode = 3;
4548

4649

4750
/*BlitzCache*/
48-
EXEC sp_BlitzCache @SortOrder = 'all', @Debug = 1
51+
EXEC dbo.sp_BlitzCache @SortOrder = 'all', @Debug = 1;
4952

50-
EXEC sp_BlitzCache @SortOrder = 'all avg'
53+
EXEC dbo.sp_BlitzCache @SortOrder = 'all avg';
5154

52-
EXEC sp_BlitzCache @MinimumExecutionCount = 10
55+
EXEC dbo.sp_BlitzCache @MinimumExecutionCount = 10;
5356

54-
EXEC sp_BlitzCache @DatabaseName = N'StackOverflow2010'
57+
EXEC dbo.sp_BlitzCache @DatabaseName = N'StackOverflow2010';
5558

56-
EXEC sp_BlitzCache @OutputDatabaseName = 'DBAtools', @OutputSchemaName = 'dbo', @OutputTableName = 'BlitzCache'
59+
EXEC dbo.sp_BlitzCache @OutputDatabaseName = 'DBAtools', @OutputSchemaName = 'dbo', @OutputTableName = 'BlitzCache';
5760

58-
EXEC sp_BlitzCache @ExpertMode = 1
61+
EXEC dbo.sp_BlitzCache @ExpertMode = 1;
5962

60-
EXEC sp_BlitzCache @ExpertMode = 2
63+
EXEC dbo.sp_BlitzCache @ExpertMode = 2;
6164

6265
/*BlitzQueryStore*/
63-
EXEC sp_BlitzQueryStore @DatabaseName = 'StackOverflow2010'
66+
EXEC dbo.sp_BlitzQueryStore @DatabaseName = 'StackOverflow2010';
6467

6568
/*BlitzBackups*/
66-
EXEC sp_BlitzBackups @HoursBack = 1000000
69+
EXEC dbo.sp_BlitzBackups @HoursBack = 1000000;
6770

6871
/*sp_AllNightLog_Setup*/
69-
EXEC sp_AllNightLog_Setup @RPOSeconds = 30, @RTOSeconds = 30, @BackupPath = 'D:\Backup', @RestorePath = 'D:\Backup', @RunSetup = 1
72+
EXEC dbo.sp_AllNightLog_Setup @RPOSeconds = 30, @RTOSeconds = 30, @BackupPath = 'D:\Backup', @RestorePath = 'D:\Backup', @RunSetup = 1;
7073

7174
/*sp_BlitzLock*/
72-
EXEC sp_BlitzLock @Debug = 1
75+
EXEC dbo.sp_BlitzLock @Debug = 1;

0 commit comments

Comments
 (0)