-
Notifications
You must be signed in to change notification settings - Fork 22
/
Test-OLA.ps1
352 lines (325 loc) · 12.4 KB
/
Test-OLA.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
<#PSScriptInfo
.VERSION 1.0
.GUID e900b08e-5e27-47ab-b407-462b409696ae
.AUTHOR Rob Sewell
.DESCRIPTION This script will check the status of the SQL Servers OLA set up including all agent jobs, folders and existence of backup files
.COMPANYNAME
.COPYRIGHT
.TAGS SQL, Ola Hallengren, Backup, Pester, Test, OVF
.LICENSEURI
.PROJECTURI
.ICONURI
.EXTERNALMODULEDEPENDENCIES sqlserver
.REQUIREDSCRIPTS
.EXTERNALSCRIPTDEPENDENCIES
.RELEASENOTES
#>
## This script will check the status of the SQL Servers OLA set up including all agent jobs, folders and existence of backup files
## Whilst you can call this script directly using Invoke-Pester and a script block as shown below it should be called with
##
## function Test-OLAInstance
##
##
## To find out more Get-Help Test-OLAInstance
##
##$Script = @{
##Path = $Path;
##Parameters = @{ Instance = Instance;
##CheckForBackups = $true;
##CheckForDBFolders = $true;
##JobSuffix = 'BackupShare1';
##Share = '\\Server1\BackupShare1'
##NoDatabaseRestoreCheck= $true;
##DontCheckJobOutcome = $true}}
##}
##Invoke-Pester -Script $Script
## Author - Rob Sewell https://sqldbawithabeard.com @SQLDBAWithBeard
## Date - 06/09/2016
#Requires –Version 4
#Requires -Modules Pester
#Requires -Modules sqlserver
[CmdletBinding()]
## Pester Test to check OLA
Param(
$Instance,
$CheckForBackups,
$CheckForDBFolders,
$JobSuffix ,
$Share ,
[switch]$NoDatabaseRestoreCheck,
[switch]$DontCheckJobOutcome
)
foreach($server in $Instance)
{
$ServerName = $Server.Split('\')[0]
$InstanceName = $Server.Split('\')[1]
$ServerName = $ServerName.ToUpper()
Describe "Testing $Server Backup solution" {
BeforeAll {
$Jobs = Get-SqlAgentJob -ServerInstance $Server
$srv = New-Object Microsoft.SQLServer.Management.SMO.Server $Server
$dbs = $Srv.Databases.Where{$_.status -eq 'Normal'}.name
$LSJobs = $srv.jobserver.jobs.where{$_.name -like 'LSBackup*'}.Name
$LSDatabases = @()
foreach ($Job in $LSJobs)
{
$LSDatabases += $Job.Split('_')[1]
}
if($InstanceName)
{
$DisplayName = "SQL Server Agent ($InstanceName)"
$Folder = $ServerName + '$' + $InstanceName
}
else
{
$DisplayName = "SQL Server Agent (MSSQLSERVER)"
$Folder = $ServerName
}
if($CheckForBackups -eq $true)
{
$CheckForDBFolders -eq $true
}
if($Share.StartsWith('\\') -eq $False)
{
$UNC = $Share.Replace(':','$')
$Root = '\\' + $ServerName + '\' + $UNC + '\' + $Folder
}
else
{
$Root = $Share + '\' + $Folder
}
}
Context "New Backup Jobs on $server" {
It "Agent should be running" {
(Get-service -ComputerName $ServerName -DisplayName $DisplayName).Status | Should Be 'Running'
}
$Jobs = $Jobs.Where{($_.Name -like 'DatabaseBackup - SYSTEM_DATABASES - FULL*' + $JobSuffix + '*') -or ($_.Name -like 'DatabaseBackup - USER_DATABASES - FULL*' + $JobSuffix + '*') -or ($_.Name -like 'DatabaseBackup - USER_DATABASES - DIFF*' + $JobSuffix + '*') -or ($_.Name -like 'DatabaseBackup - USER_DATABASES - LOG*' + $JobSuffix + '*')}
foreach($job in $Jobs)
{
$JobName = $Job.Name
It "$JobName Job Exists" {
$Job | Should Not BeNullOrEmpty
}
It "$JobName Job is enabled" {
$job.IsEnabled | Should Be 'True'
}
It "$JobName Job has schedule" {
$Job.HasSchedule | Should Be 'True'
}
if($DontCheckJobOutcome -eq $false)
{
It "$JobName Job succeeded" {
$Job.LastRunOutCome | Should Be 'Succeeded'
}
}
if($NoDatabaseRestoreCheck -eq $false)
{
It "$JobName Job has 2 JobSteps" {
$Job.Jobsteps.Count | Should Be 2
}
It "$JobName Job has Generate Restore Script Job Step" {
$Job.JobSteps[1].Name | Should Be 'Generate Restore Script'
}
}
}# foreach jobs
} # end context new backup jobs
Context "Other Maintenance Jobs on $Server" {
$Jobs = $Jobs.Where{($_.Name -eq 'DatabaseIntegrityCheck - SYSTEM_DATABASES') -or ($_.Name -eq 'DatabaseIntegrityCheck - USER_DATABASES') -or ($_.Name -eq 'IndexOptimize - USER_DATABASES')}
foreach($job in $Jobs)
{
$JobName = $Job.Name
It "$JobName Job Exists" {
$Job | Should Not BeNullOrEmpty
}
It "$JobName Job is enabled" {
$job.IsEnabled | Should Be 'True'
}
It "$JobName Job has schedule" {
$Job.HasSchedule | Should Be 'True'
}
if($DontCheckJobOutcome -eq $false)
{
It "$JobName Job succeeded" {
$Job.LastRunOutCome | Should Be 'Succeeded'
}
}
}# foreach jobs
} # end context other maintenanace jobs
Context "OLA cleanup jobs on $Server" {
$Jobs = $Jobs.Where{($_.Name -eq 'Output File Cleanup') -or ($_.Name -eq 'CommandLog Cleanup') -or ($_.Name -eq 'sp_delete_backuphistory') -or ($_.Name -eq 'sp_purge_jobhistory')}
foreach($job in $Jobs)
{
$JobName = $Job.Name
It "$JobName Job Exists" {
$Job | Should Not BeNullOrEmpty
}
It "$JobName Job is enabled" {
$job.IsEnabled | Should Be 'True'
}
It "$JobName Job has schedule" {
$Job.HasSchedule | Should Be 'True'
}
if($DontCheckJobOutcome -eq $false)
{
It "$JobName Job succeeded" {
$Job.LastRunOutCome | Should Be 'Succeeded'
}
}
}# foreach jobs
} # end ola clean up jobs
Context "$Share Share For $Server" {
It "Should have the root folder $Root" {
Test-Path $Root | Should Be $true
}
if($NoDatabaseRestoreCheck -eq $false)
{
It "Database Restore Text file exists" {
$RestoreTXT = $Root + '\DatabaseRestore.txt'
$Check = Test-Path $RestoreTXT
$Check| Should Be $true
}
if ($Check-eq $true)
{
It "Database Restore Text is less than 30 minutes old" {
((Get-ChildItem $RestoreTXT).LastWriteTime -lt (Get-Date).AddMinutes(-30)) | Should Be $true
}
}
}
}
foreach($db in $dbs.Where{$_ -ne 'tempdb'})
{
if($Srv.VersionMajor -ge 11)
{
If($srv.Databases[$db].AvailabilityGroupName)
{
$AG = $srv.Databases[$db].AvailabilityGroupName
$Cluster = $srv.ClusterName
$OLAAg = $Cluster + '$' + $AG
if($Share.StartsWith('\\') -eq $False)
{
$UNC = $Share.Replace(':','$')
$Root = '\\' + $ServerName + '\' + $UNC + '\' + $OlaAG
}
else
{
$Root = '\\' + $ServerName + '\' + $UNC + '\' + $Folder
}
}
else
{
if($Share.StartsWith('\\') -eq $False)
{
$UNC = $Share.Replace(':','$')
$Root = '\\' + $ServerName + '\' + $UNC + '\' + $Folder
}
else
{
$Root = $Share + '\' + $Folder
}
}
}
$dbfoldername = $db.Replace(' ','')
$Dbfolder = $Root + "\$dbfoldername"
$Full = $Dbfolder + '\FULL'
$Diff = $Dbfolder + '\DIFF'
$Log = $Dbfolder + '\LOG'
If($CheckForDBFolders -eq $True)
{
Context "Folder Check for $db on $Server on $Share" {
It "Should have a folder for $db database" {
Test-Path $Dbfolder |Should Be $true
}
if($Db -notin ('master','msdb','model') -and ($Srv.Databases[$db].RecoveryModel -ne 'Simple') -and ( $LSDatabases -notcontains $db))
{
It "Has a Full Folder" {
[System.IO.Directory]::Exists($Full) | Should Be $True
}
It "Has a Diff Folder" {
[System.IO.Directory]::Exists($Diff) | Should Be $True
}
It "Has a Log Folder" {
[System.IO.Directory]::Exists($Log) | Should Be $True
}
} #
elseif(($Srv.Databases[$db].RecoveryModel -eq 'Simple') -and $Db -notin ('master','msdb','model') -or ( $LSDatabases -contains $db) )
{
It "Has a Full Folder" {
[System.IO.Directory]::Exists($Full) | Should Be $True
}
It "Has a Diff Folder" {
[System.IO.Directory]::Exists($Diff) | Should Be $True
}
} #
else
{
It "Has a Full Folder" {
[System.IO.Directory]::Exists($Full) | Should Be $True
}
}#
} # End Check for db folders
}
If($CheckForBackups -eq $true)
{
Context " File Check For $db on $Server on $Share" {
$Fullcreate = [System.IO.Directory]::GetCreationTime($Full)
$FullWrite = [System.IO.Directory]::GetLastWriteTime($Full)
if($Fullcreate -eq $FullWrite)
{
It "Has Files in the FULL folder for $db" {
Get-ChildItem $Full\*.bak | Should Not BeNullOrEmpty
}
}
else
{
It "Has Files in the FULL folder for $db" {
$FullCreate | Should BeLessThan $FullWrite
}
}
It "Full File Folder was written to within the last 7 days" {
$Fullwrite |Should BeGreaterThan (Get-Date).AddDays(-7)
}
if($Db -notin ('master','msdb','model'))
{
$Diffcreate = [System.IO.Directory]::GetCreationTime($Diff)
$DiffWrite = [System.IO.Directory]::GetLastWriteTime($Diff)
if($Diffcreate -eq $DiffWrite)
{
It "Has Files in the DIFF folder for $db" {
Get-ChildItem $Diff\*.bak | Should Not BeNullOrEmpty
}
}
else
{
It "Has Files in the DIFF folder for $db" {
$DiffCreate | Should BeLessThan $DiffWrite
}
}
It "Diff File Folder was written to within the last 24 Hours" {
$Diffwrite |Should BeGreaterThan (Get-Date).AddHours(-24)
}
}
if($Db -notin ('master','msdb','model') -and ($Srv.Databases[$db].RecoveryModel -ne 'Simple') -and ( $LSDatabases -notcontains $db))
{
$Logcreate = [System.IO.Directory]::GetCreationTime($Log)
$LogWrite = [System.IO.Directory]::GetLastWriteTime($Log)
if($Logcreate -eq $LogWrite)
{
It "Has Files in the LOG folder for $db" {
Get-ChildItem $Log\*.trn | Should Not BeNullOrEmpty
}
}
else
{
It "Has Files in the LOG folder for $db" {
$LogCreate | Should BeLessThan $LogWrite
}
}
It "Log File Folder was written to within the last 30 minutes" {
$Logwrite |Should BeGreaterThan (Get-Date).AddMinutes(-30)
}
}# Simple Recovery
}
}# Check for backups
} # End share context
}#end describe
}