Skip to content

Commit d59f126

Browse files
authored
Merge pull request #3882 from BrentOzarULTD/3881_release_prep_before_claude_starts
#3881 release prep
2 parents 455f24b + acc5a37 commit d59f126

File tree

4 files changed

+36
-161
lines changed

4 files changed

+36
-161
lines changed
File renamed without changes.

Documentation/Development/ReleaseProcess.md

Lines changed: 0 additions & 72 deletions
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,38 @@
1-
/*Blitz*/
1+
/* Remove configuration tables from last tests */
2+
DROP TABLE IF EXISTS DBAtools.dbo.Blitz;
3+
DROP TABLE IF EXISTS DBAtools.dbo.BlitzWho_Results;
4+
DROP TABLE IF EXISTS DBAtools.dbo.BlitzFirst;
5+
DROP TABLE IF EXISTS DBAtools.dbo.BlitzFirst_FileStats;
6+
DROP TABLE IF EXISTS DBAtools.dbo.BlitzFirst_PerfmonStats;
7+
DROP TABLE IF EXISTS DBAtools.dbo.BlitzFirst_WaitStats;
8+
DROP TABLE IF EXISTS DBAtools.dbo.BlitzCache;
9+
DROP TABLE IF EXISTS DBAtools.dbo.BlitzWho;
10+
DROP TABLE IF EXISTS DBAtools.dbo.BlitzLock;
11+
GO
12+
13+
214
EXEC dbo.sp_Blitz @CheckUserDatabaseObjects = 1, @CheckServerInfo = 1;
315
GO
416
EXEC dbo.sp_Blitz @CheckUserDatabaseObjects = 1, @CheckServerInfo = 1, @OutputDatabaseName = 'DBAtools', @OutputSchemaName = 'dbo', @OutputTableName = 'Blitz';
517
GO
618

7-
/*BlitzWho*/
8-
EXEC dbo.sp_BlitzWho @ExpertMode = 1;
19+
20+
EXEC dbo.sp_BlitzBackups @HoursBack = 1000000;
21+
GO
22+
23+
24+
EXEC dbo.sp_BlitzCache;
925
GO
10-
EXEC dbo.sp_BlitzWho @ExpertMode = 0;
26+
EXEC dbo.sp_BlitzCache @AI = 2;
1127
GO
12-
EXEC dbo.sp_BlitzWho @OutputDatabaseName = 'DBAtools', @OutputSchemaName = 'dbo', @OutputTableName = 'BlitzWho_Results';
28+
EXEC dbo.sp_BlitzCache @SortOrder = 'all';
1329
GO
30+
EXEC dbo.sp_BlitzCache @OutputDatabaseName = 'DBAtools', @OutputSchemaName = 'dbo', @OutputTableName = 'BlitzCache';
31+
GO
32+
1433

15-
/*BlitzFirst*/
34+
EXEC dbo.sp_BlitzFirst;
35+
GO
1636
EXEC dbo.sp_BlitzFirst @Seconds = 5, @ExpertMode = 1;
1737
GO
1838
EXEC dbo.sp_BlitzFirst @SinceStartup = 1;
@@ -28,7 +48,6 @@ EXEC dbo.sp_BlitzFirst @OutputDatabaseName = 'DBAtools',
2848
GO
2949

3050

31-
/*BlitzIndex*/
3251
EXEC dbo.sp_BlitzIndex @GetAllDatabases = 1, @Mode = 0;
3352
GO
3453
EXEC dbo.sp_BlitzIndex @GetAllDatabases = 1, @Mode = 1;
@@ -41,23 +60,21 @@ EXEC dbo.sp_BlitzIndex @GetAllDatabases = 1, @Mode = 4;
4160
GO
4261
EXEC dbo.sp_BlitzIndex @DatabaseName = 'StackOverflow', @TableName = 'Users'
4362
GO
63+
EXEC dbo.sp_BlitzIndex @DatabaseName = 'StackOverflow', @TableName = 'Users', @AI = 2;
64+
GO
4465

4566

46-
/*BlitzCache*/
47-
EXEC dbo.sp_BlitzCache @SortOrder = 'all';
67+
68+
EXEC dbo.sp_BlitzLock;
4869
GO
49-
EXEC dbo.sp_BlitzCache @OutputDatabaseName = 'DBAtools', @OutputSchemaName = 'dbo', @OutputTableName = 'BlitzCache';
70+
EXEC dbo.sp_BlitzLock @OutputDatabaseName = 'DBAtools', @OutputSchemaName = 'dbo', @OutputTableName = 'BlitzLock';
5071
GO
5172

52-
/*BlitzQueryStore - uncomment this when testing on 2016+ instances:
53-
EXEC dbo.sp_BlitzQueryStore @DatabaseName = 'StackOverflow';
54-
GO
55-
*/
5673

57-
/*BlitzBackups*/
58-
EXEC dbo.sp_BlitzBackups @HoursBack = 1000000;
74+
EXEC dbo.sp_BlitzWho;
5975
GO
60-
61-
/*sp_BlitzLock*/
62-
EXEC dbo.sp_BlitzLock;
76+
EXEC dbo.sp_BlitzWho @ExpertMode = 1;
6377
GO
78+
EXEC dbo.sp_BlitzWho @OutputDatabaseName = 'DBAtools', @OutputSchemaName = 'dbo', @OutputTableName = 'BlitzWho_Results';
79+
GO
80+

Documentation/Development/Test sp_DatabaseRestore.sql

Lines changed: 0 additions & 70 deletions
This file was deleted.

0 commit comments

Comments
 (0)