Skip to content

Commit a09a03f

Browse files
authored
Merge pull request #3896 from BrentOzarULTD/dev
2026-04-07 release prep
2 parents d3e0c90 + 002b268 commit a09a03f

22 files changed

Lines changed: 21938 additions & 21183 deletions

Documentation/Development/Build Installation Scripts.ps1

Lines changed: 350 additions & 0 deletions
Large diffs are not rendered by default.

Documentation/Development/Merge Blitz.ps1

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

Documentation/Development/ReleaseProcess.md

Lines changed: 0 additions & 72 deletions
This file was deleted.
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
DROP TABLE IF EXISTS dbo.BlitzWho_Results;
2+
DROP TABLE IF EXISTS dbo.BlitzFirst;
3+
DROP TABLE IF EXISTS dbo.BlitzFirst_FileStats;
4+
DROP TABLE IF EXISTS dbo.BlitzFirst_PerfmonStats;
5+
DROP TABLE IF EXISTS dbo.BlitzFirst_WaitStats;
6+
DROP TABLE IF EXISTS dbo.BlitzCache;
7+
DROP TABLE IF EXISTS dbo.BlitzWho;
8+
DROP TABLE IF EXISTS dbo.BlitzLock;
9+
GO
10+
EXEC dbo.sp_BlitzCache @SortOrder = 'all';
11+
GO
12+
EXEC dbo.sp_BlitzCache @OutputSchemaName = 'dbo', @OutputTableName = 'BlitzCache';
13+
GO
14+
EXEC dbo.sp_BlitzFirst @Seconds = 5, @ExpertMode = 1;
15+
GO
16+
EXEC dbo.sp_BlitzFirst @SinceStartup = 1;
17+
GO
18+
EXEC dbo.sp_BlitzFirst @OutputSchemaName = 'dbo',
19+
@OutputTableName = 'BlitzFirst',
20+
@OutputTableNameFileStats = 'BlitzFirst_FileStats',
21+
@OutputTableNamePerfmonStats = 'BlitzFirst_PerfmonStats',
22+
@OutputTableNameWaitStats = 'BlitzFirst_WaitStats',
23+
@OutputTableNameBlitzCache = 'BlitzCache',
24+
@OutputTableNameBlitzWho = 'BlitzWho';
25+
GO
26+
EXEC dbo.sp_BlitzIndex @Mode = 0;
27+
GO
28+
EXEC dbo.sp_BlitzIndex @Mode = 1;
29+
GO
30+
EXEC dbo.sp_BlitzIndex @Mode = 2;
31+
GO
32+
EXEC dbo.sp_BlitzIndex @Mode = 3;
33+
GO
34+
EXEC dbo.sp_BlitzIndex @Mode = 4;
35+
GO
36+
EXEC dbo.sp_BlitzIndex @TableName = 'Users'
37+
GO
38+
EXEC dbo.sp_BlitzLock;
39+
GO
40+
EXEC dbo.sp_BlitzWho @ExpertMode = 1;
41+
GO
42+
EXEC dbo.sp_BlitzWho @ExpertMode = 0;
43+
GO
44+
EXEC dbo.sp_BlitzWho @OutputSchemaName = 'dbo', @OutputTableName = 'BlitzWho_Results';
45+
GO
46+
EXEC dbo.sp_kill @ExecuteKills = 'N';
47+
GO
48+
EXEC dbo.sp_kill @ExecuteKills = 'Y';
49+
GO

Documentation/Development/Test sp_DatabaseRestore.sql

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

Documentation/Development/_TestBed.sql

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

0 commit comments

Comments
 (0)