-
Notifications
You must be signed in to change notification settings - Fork 225
/
MSFT_SqlAGDatabases.psm1
984 lines (796 loc) · 40.5 KB
/
MSFT_SqlAGDatabases.psm1
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
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
Import-Module -Name (Join-Path -Path (Split-Path (Split-Path $PSScriptRoot -Parent) -Parent) `
-ChildPath 'SqlServerDSCHelper.psm1') `
-Force
Import-Module -Name (Join-Path -Path (Split-Path -Path $PSScriptRoot -Parent) `
-ChildPath 'CommonResourceHelper.psm1')
$script:localizedData = Get-LocalizedData -ResourceName 'MSFT_SqlAGDatabases'
<#
.SYNOPSIS
Gets the database membership of the specified availability group.
.PARAMETER DatabaseName
The name of the database(s) to add to the availability group. This accepts wildcards.
.PARAMETER SQLServer
Hostname of the SQL Server where the primary replica of the availability group lives. If the
availability group is not currently on this server, the resource will attempt to connect to the
server where the primary replica lives.
.PARAMETER SQLInstanceName
Name of the SQL instance where the primary replica of the availability group lives. If the
availability group is not currently on this instance, the resource will attempt to connect to
the instance where the primary replica lives.
.PARAMETER AvailabilityGroupName
The name of the availability group in which to manage the database membership(s).
.PARAMETER BackupPath
The path used to seed the availability group replicas. This should be a path that is accessible
by all of the replicas.
#>
function Get-TargetResource
{
[CmdletBinding()]
[OutputType([System.Collections.Hashtable])]
param
(
[Parameter(Mandatory = $true)]
[System.String[]]
$DatabaseName,
[Parameter(Mandatory = $true)]
[System.String]
$SQLServer,
[Parameter(Mandatory = $true)]
[System.String]
$SQLInstanceName,
[Parameter(Mandatory = $true)]
[System.String]
$AvailabilityGroupName,
[Parameter(Mandatory = $true)]
[System.String]
$BackupPath
)
# Create an object that reflects the current configuration
$currentConfiguration = @{
DatabaseName = @()
SQLServer = $SQLServer
SQLInstanceName = $SQLInstanceName
AvailabilityGroupName = ''
BackupPath = ''
Ensure = ''
Force = $false
MatchDatabaseOwner = $false
IsActiveNode = $false
}
# Connect to the instance
$serverObject = Connect-SQL -SQLServer $SQLServer -SQLInstanceName $SQLInstanceName
# Is this node actively hosting the SQL instance?
$currentConfiguration.IsActiveNode = Test-ActiveNode -ServerObject $serverObject
# Get the Availability group object
$availabilityGroup = $serverObject.AvailabilityGroups[$AvailabilityGroupName]
if ( $availabilityGroup )
{
$currentConfiguration.AvailabilityGroupName = $AvailabilityGroupName
# Get the databases in the availability group
$currentConfiguration.DatabaseName = $availabilityGroup.AvailabilityDatabases | Select-Object -ExpandProperty Name
}
else
{
Write-Verbose -Message ($script:localizedData.AvailabilityGroupDoesNotExist -f $AvailabilityGroupName)
}
return $currentConfiguration
}
<#
.SYNOPSIS
Adds or removes databases to the specified availability group.
.PARAMETER DatabaseName
The name of the database(s) to add to the availability group. This accepts wildcards.
.PARAMETER SQLServer
Hostname of the SQL Server where the primary replica of the availability group lives. If the
availability group is not currently on this server, the resource will attempt to connect to the
server where the primary replica lives.
.PARAMETER SQLInstanceName
Name of the SQL instance where the primary replica of the availability group lives. If the
availability group is not currently on this instance, the resource will attempt to connect to
the instance where the primary replica lives.
.PARAMETER AvailabilityGroupName
The name of the availability group in which to manage the database membership(s).
.PARAMETER BackupPath
The path used to seed the availability group replicas. This should be a path that is accessible
by all of the replicas.
.PARAMETER Ensure
Specifies the membership of the database(s) in the availability group. The options are:
- Present: The defined database(s) are added to the availability group. All other
databases that may be a member of the availability group are ignored.
- Absent: The defined database(s) are removed from the availability group. All other
databases that may be a member of the availability group are ignored.
The default is 'Present'.
.PARAMETER Force
When used with "Ensure = 'Present'" it ensures the specified database(s) are the only databases
that are a member of the specified Availability Group.
This parameter is ignored when 'Ensure' is 'Absent'.
.PARAMETER MatchDatabaseOwner
If set to $true, this ensures the database owner of the database on the primary replica is the
owner of the database on all secondary replicas. This requires the database owner is available
as a login on all replicas and that the PSDscRunAsCredential has impersonate permissions.
If set to $false, the owner of the database will be the PSDscRunAsCredential.
The default is '$true'.
.PARAMETER ProcessOnlyOnActiveNode
Specifies that the resource will only determine if a change is needed if the target node is the active host of the SQL Server Instance.
Not used in Set-TargetResource.
#>
function Set-TargetResource
{
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[System.String[]]
$DatabaseName,
[Parameter(Mandatory = $true)]
[System.String]
$SQLServer,
[Parameter(Mandatory = $true)]
[System.String]
$SQLInstanceName,
[Parameter(Mandatory = $true)]
[System.String]
$AvailabilityGroupName,
[Parameter(Mandatory = $true)]
[System.String]
$BackupPath,
[Parameter()]
[ValidateSet('Present', 'Absent')]
[System.String]
$Ensure = 'Present',
[Parameter()]
[Boolean]
$Force,
[Parameter()]
[Boolean]
$MatchDatabaseOwner,
[Parameter()]
[Boolean]
$ProcessOnlyOnActiveNode
)
Import-SQLPSModule
# Connect to the defined instance
$serverObject = Connect-SQL -SQLServer $SQLServer -SQLInstanceName $SQLInstanceName
# Get the Availability Group
$availabilityGroup = $serverObject.AvailabilityGroups[$AvailabilityGroupName]
# Make sure we're communicating with the primary replica in order to make changes to the replica
$primaryServerObject = Get-PrimaryReplicaServerObject -ServerObject $serverObject -AvailabilityGroup $availabilityGroup
$getDatabasesToAddToAvailabilityGroupParameters = @{
DatabaseName = $DatabaseName
Ensure = $Ensure
ServerObject = $primaryServerObject
AvailabilityGroup = $availabilityGroup
}
$databasesToAddToAvailabilityGroup = Get-DatabasesToAddToAvailabilityGroup @getDatabasesToAddToAvailabilityGroupParameters
$getDatabasesToRemoveFromAvailabilityGroupParameters = @{
DatabaseName = $DatabaseName
Ensure = $Ensure
Force = $Force
ServerObject = $primaryServerObject
AvailabilityGroup = $availabilityGroup
}
$databasesToRemoveFromAvailabilityGroup = Get-DatabasesToRemoveFromAvailabilityGroup @getDatabasesToRemoveFromAvailabilityGroupParameters
# Create a hash table to store the databases that failed to be added to the Availability Group
$databasesToAddFailures = @{}
# Create a hash table to store the databases that failed to be added to the Availability Group
$databasesToRemoveFailures = @{}
if ( $databasesToAddToAvailabilityGroup.Count -gt 0 )
{
Write-Verbose -Message ($script:localizedData.AddingDatabasesToAvailabilityGroup -f $AvailabilityGroupName, ( $databasesToAddToAvailabilityGroup -join ', ' ))
# Get only the secondary replicas. Some tests do not need to be performed on the primary replica
$secondaryReplicas = $availabilityGroup.AvailabilityReplicas | Where-Object -FilterScript { $_.Role -ne 'Primary' }
# Ensure the appropriate permissions are in place on all the replicas
if ( $MatchDatabaseOwner )
{
$impersonatePermissionsStatus = @{}
foreach ( $availabilityGroupReplica in $secondaryReplicas )
{
$currentAvailabilityGroupReplicaServerObject = Connect-SQL -SQLServer $availabilityGroupReplica.Name
$impersonatePermissionsStatus.Add(
$availabilityGroupReplica.Name,
( Test-ImpersonatePermissions -ServerObject $currentAvailabilityGroupReplicaServerObject )
)
}
if ( $impersonatePermissionsStatus.Values -contains $false )
{
$impersonatePermissionsMissingParameters = @(
[System.Security.Principal.WindowsIdentity]::GetCurrent().Name,
( ( $impersonatePermissionsStatus.GetEnumerator() | Where-Object -FilterScript { -not $_.Value } | Select-Object -ExpandProperty Key ) -join ', ' )
)
throw ($script:localizedData.ImpersonatePermissionsMissing -f $impersonatePermissionsMissingParameters )
}
}
foreach ( $databaseToAddToAvailabilityGroup in $databasesToAddToAvailabilityGroup )
{
$databaseObject = $primaryServerObject.Databases[$databaseToAddToAvailabilityGroup]
<#
Verify the prerequisites prior to joining the database to the availability group
https://docs.microsoft.com/en-us/sql/database-engine/availability-groups/windows/prereqs-restrictions-recommendations-always-on-availability#a-nameprerequisitesfordbsa-availability-database-prerequisites-and-restrictions
#>
# Create a hash table to store prerequisite check failures
$prerequisiteCheckFailures = @()
$prerequisiteChecks = @{
RecoveryModel = 'Full'
ReadOnly = $false
UserAccess = 'Multiple'
AutoClose = $false
AvailabilityGroupName = ''
IsMirroringEnabled = $false
}
foreach ( $prerequisiteCheck in $prerequisiteChecks.GetEnumerator() )
{
if ( $databaseObject.($prerequisiteCheck.Key) -ne $prerequisiteCheck.Value )
{
$prerequisiteCheckFailures += "$($prerequisiteCheck.Key) is not $($prerequisiteCheck.Value)."
}
}
# Cannot be a system database
if ( $databaseObject.ID -le 4 )
{
$prerequisiteCheckFailures += 'The database cannot be a system database.'
}
# If FILESTREAM is enabled, ensure FILESTREAM is enabled on all replica instances
if (
( -not [System.String]::IsNullOrEmpty($databaseObject.DefaultFileStreamFileGroup) ) `
-or ( -not [System.String]::IsNullOrEmpty($databaseObject.FilestreamDirectoryName) ) `
-or ( $databaseObject.FilestreamNonTransactedAccess -ne 'Off' )
)
{
$availabilityReplicaFilestreamLevel = @{}
foreach ( $availabilityGroupReplica in $secondaryReplicas )
{
$connectSqlParameters = Split-FullSQLInstanceName -FullSQLInstanceName $availabilityGroupReplica.Name
$currentAvailabilityGroupReplicaServerObject = Connect-SQL @connectSqlParameters
$availabilityReplicaFilestreamLevel.Add($availabilityGroupReplica.Name, $currentAvailabilityGroupReplicaServerObject.FilestreamLevel)
}
if ( $availabilityReplicaFilestreamLevel.Values -contains 'Disabled' )
{
$availabilityReplicaFilestreamLevelDisabled = $availabilityReplicaFilestreamLevel.GetEnumerator() | Where-Object { $_.Value -eq 'Disabled' } | Select-Object -ExpandProperty Key
$prerequisiteCheckFailures += ( 'Filestream is disabled on the following instances: {0}' -f ( $availabilityReplicaFilestreamLevelDisabled -join ', ' ) )
}
}
# If the database is contained, ensure contained database authentication is enabled on all replica instances
if ( $databaseObject.ContainmentType -ne 'None' )
{
$availabilityReplicaContainmentEnabled = @{}
foreach ( $availabilityGroupReplica in $secondaryReplicas )
{
$connectSqlParameters = Split-FullSQLInstanceName -FullSQLInstanceName $availabilityGroupReplica.Name
$currentAvailabilityGroupReplicaServerObject = Connect-SQL @connectSqlParameters
$availabilityReplicaContainmentEnabled.Add($availabilityGroupReplica.Name, $currentAvailabilityGroupReplicaServerObject.Configuration.ContainmentEnabled.ConfigValue)
}
if ( $availabilityReplicaContainmentEnabled.Values -notcontains 'None' )
{
$availabilityReplicaContainmentNotEnabled = $availabilityReplicaContainmentEnabled.GetEnumerator() | Where-Object { $_.Value -eq 'None' } | Select-Object -ExpandProperty Key
$prerequisiteCheckFailures += ( 'Contained Database Authentication is not enabled on the following instances: {0}' -f ( $availabilityReplicaContainmentNotEnabled -join ', ' ) )
}
}
# Ensure the data and log file paths exist on all replicas
$databaseFileDirectories = @()
$databaseFileDirectories += $databaseObject.FileGroups.Files.FileName | ForEach-Object { Split-Path -Path $_ -Parent }
$databaseFileDirectories += $databaseObject.LogFiles.FileName | ForEach-Object { Split-Path -Path $_ -Parent }
$databaseFileDirectories = $databaseFileDirectories | Select-Object -Unique
$availabilityReplicaMissingDirectories = @{}
foreach ( $availabilityGroupReplica in $secondaryReplicas )
{
$connectSqlParameters = Split-FullSQLInstanceName -FullSQLInstanceName $availabilityGroupReplica.Name
$currentAvailabilityGroupReplicaServerObject = Connect-SQL @connectSqlParameters
$missingDirectories = @()
foreach ( $databaseFileDirectory in $databaseFileDirectories )
{
$fileExistsQuery = "EXEC master.dbo.xp_fileexist '$databaseFileDirectory'"
$fileExistsResult = Invoke-Query -SQLServer $currentAvailabilityGroupReplicaServerObject.NetName -SQLInstanceName $currentAvailabilityGroupReplicaServerObject.ServiceName -Database master -Query $fileExistsQuery -WithResults
if ( $fileExistsResult.Tables.Rows.'File is a Directory' -ne 1 )
{
$missingDirectories += $databaseFileDirectory
}
}
if ( $missingDirectories.Count -gt 0 )
{
$availabilityReplicaMissingDirectories.Add($availabilityGroupReplica, ( $missingDirectories -join ', ' ))
}
}
if ( $availabilityReplicaMissingDirectories.Count -gt 0 )
{
foreach ( $availabilityReplicaMissingDirectory in $availabilityReplicaMissingDirectories.GetEnumerator() )
{
$prerequisiteCheckFailures += "The instance '$($availabilityReplicaMissingDirectory.Key.Name)' is missing the following directories: $($availabilityReplicaMissingDirectory.Value)"
}
}
# If the database is TDE'd, ensure the certificate or asymmetric key is installed on all replicas
if ( $databaseObject.EncryptionEnabled )
{
$databaseCertificateThumbprint = [System.BitConverter]::ToString($databaseObject.DatabaseEncryptionKey.Thumbprint)
$databaseCertificateName = $databaseObject.DatabaseEncryptionKey.EncryptorName
$availabilityReplicaMissingCertificates = @{}
foreach ( $availabilityGroupReplica in $secondaryReplicas )
{
$connectSqlParameters = Split-FullSQLInstanceName -FullSQLInstanceName $availabilityGroupReplica.Name
$currentAvailabilityGroupReplicaServerObject = Connect-SQL @connectSqlParameters
[System.Array]$installedCertificateThumbprints = $currentAvailabilityGroupReplicaServerObject.Databases['master'].Certificates | ForEach-Object { [System.BitConverter]::ToString($_.Thumbprint) }
if ( $installedCertificateThumbprints -notcontains $databaseCertificateThumbprint )
{
$availabilityReplicaMissingCertificates.Add($availabilityGroupReplica, $databaseCertificateName)
}
}
if ( $availabilityReplicaMissingCertificates.Count -gt 0 )
{
foreach ( $availabilityReplicaMissingCertificate in $availabilityReplicaMissingCertificates.GetEnumerator() )
{
$prerequisiteCheckFailures += "The instance '$($availabilityReplicaMissingCertificate.Key.Name)' is missing the following certificates: $($availabilityReplicaMissingCertificate.Value)"
}
}
}
if ( $prerequisiteCheckFailures.Count -eq 0 )
{
$databaseFullBackupFile = Join-Path -Path $BackupPath -ChildPath "$($databaseObject.Name)_Full_$(Get-Date -Format 'yyyyMMddhhmmss').bak"
$databaseLogBackupFile = Join-Path -Path $BackupPath -ChildPath "$($databaseObject.Name)_Log_$(Get-Date -Format 'yyyyMMddhhmmss').trn"
# Build the backup parameters. If no backup was previously taken, a standard full will be taken. Otherwise a CopyOnly backup will be taken.
$backupSqlDatabaseParameters = @{
DatabaseObject = $databaseObject
BackupAction = 'Database'
BackupFile = $databaseFullBackupFile
ErrorAction = 'Stop'
}
# If no full backup was ever taken, do not take a backup with CopyOnly
if ( $databaseObject.LastBackupDate -ne 0 )
{
$backupSqlDatabaseParameters.Add('CopyOnly', $true)
}
try
{
Backup-SqlDatabase @backupSqlDatabaseParameters
}
catch
{
# Log the failure
$databasesToAddFailures.Add($databaseToAddToAvailabilityGroup, $_.Exception)
# Move on to the next database
continue
}
# Create the parameters to perform a transaction log backup
$backupSqlDatabaseLogParams = @{
DatabaseObject = $databaseObject
BackupAction = 'Log'
BackupFile = $databaseLogBackupFile
ErrorAction = 'Stop'
}
try
{
Backup-SqlDatabase @backupSqlDatabaseLogParams
}
catch
{
# Log the failure
$databasesToAddFailures.Add($databaseToAddToAvailabilityGroup, $_.Exception)
# Move on to the next database
continue
}
# Add the database to the availability group on the primary instance
try
{
Add-SqlAvailabilityDatabase -InputObject $availabilityGroup -Database $databaseToAddToAvailabilityGroup
}
catch
{
# Log the failure
$databasesToAddFailures.Add($databaseToAddToAvailabilityGroup, $_.Exception)
# Move on to the next database
continue
}
# Need to restore the database with a query in order to impersonate the correct login
$restoreDatabaseQueryStringBuilder = New-Object -TypeName System.Text.StringBuilder
if ( $MatchDatabaseOwner )
{
$restoreDatabaseQueryStringBuilder.Append('EXECUTE AS LOGIN = ''') | Out-Null
$restoreDatabaseQueryStringBuilder.Append($databaseObject.Owner) | Out-Null
$restoreDatabaseQueryStringBuilder.AppendLine('''') | Out-Null
}
$restoreDatabaseQueryStringBuilder.Append('RESTORE DATABASE [') | Out-Null
$restoreDatabaseQueryStringBuilder.Append($databaseToAddToAvailabilityGroup) | Out-Null
$restoreDatabaseQueryStringBuilder.AppendLine(']') | Out-Null
$restoreDatabaseQueryStringBuilder.Append('FROM DISK = ''') | Out-Null
$restoreDatabaseQueryStringBuilder.Append($databaseFullBackupFile) | Out-Null
$restoreDatabaseQueryStringBuilder.AppendLine('''') | Out-Null
$restoreDatabaseQueryStringBuilder.Append('WITH NORECOVERY') | Out-Null
$restoreDatabaseQueryString = $restoreDatabaseQueryStringBuilder.ToString()
# Build the parameters to restore the transaction log
$restoreSqlDatabaseLogParameters = @{
Database = $databaseToAddToAvailabilityGroup
BackupFile = $databaseLogBackupFile
RestoreAction = 'Log'
NoRecovery = $true
}
try
{
foreach ( $availabilityGroupReplica in $secondaryReplicas )
{
# Connect to the replica
$connectSqlParameters = Split-FullSQLInstanceName -FullSQLInstanceName $availabilityGroupReplica.Name
$currentAvailabilityGroupReplicaServerObject = Connect-SQL @connectSqlParameters
$currentReplicaAvailabilityGroupObject = $currentAvailabilityGroupReplicaServerObject.AvailabilityGroups[$AvailabilityGroupName]
# Restore the database
Invoke-Query -SQLServer $currentAvailabilityGroupReplicaServerObject.NetName -SQLInstanceName $currentAvailabilityGroupReplicaServerObject.ServiceName -Database master -Query $restoreDatabaseQueryString
Restore-SqlDatabase -InputObject $currentAvailabilityGroupReplicaServerObject @restoreSqlDatabaseLogParameters
# Add the database to the Availability Group
Add-SqlAvailabilityDatabase -InputObject $currentReplicaAvailabilityGroupObject -Database $databaseToAddToAvailabilityGroup
}
}
catch
{
# Log the failure
$databasesToAddFailures.Add($databaseToAddToAvailabilityGroup, $_.Exception)
# Move on to the next database
continue
}
finally
{
# Clean up the backup files
Remove-Item -Path $databaseFullBackupFile, $databaseLogBackupFile -Force -ErrorAction Continue
}
}
else
{
$databasesToAddFailures.Add($databaseToAddToAvailabilityGroup, "The following prerequisite checks failed: $( $prerequisiteCheckFailures -join "`r`n" )" )
}
}
}
if ( $databasesToRemoveFromAvailabilityGroup.Count -gt 0 )
{
Write-Verbose -Message ($script:localizedData.RemovingDatabasesToAvailabilityGroup -f $AvailabilityGroupName, ( $databasesToRemoveFromAvailabilityGroup -join ', ' ))
foreach ( $databaseToAddToAvailabilityGroup in $databasesToRemoveFromAvailabilityGroup )
{
$availabilityDatabase = $primaryServerObject.AvailabilityGroups[$AvailabilityGroupName].AvailabilityDatabases[$databaseToAddToAvailabilityGroup]
try
{
Remove-SqlAvailabilityDatabase -InputObject $availabilityDatabase -ErrorAction Stop
}
catch
{
$databasesToRemoveFailures.Add($databaseToAddToAvailabilityGroup, 'Failed to remove the database from the availability group.')
}
}
}
# Combine the failures into one error message and throw it here. Doing this will allow all the databases that can be processes to be processed and will still show that applying the configuration failed
if ( ( $databasesToAddFailures.Count -gt 0 ) -or ( $databasesToRemoveFailures.Count -gt 0 ) )
{
$formatArgs = @()
foreach ( $failure in ( $databasesToAddFailures.GetEnumerator() + $databasesToRemoveFailures.GetEnumerator() ) )
{
$formatArgs += "The operation on the database '$( $failure.Key )' failed with the following errors: $( $failure.Value -join "`r`n" )"
}
throw ($script:localizedData.AlterAvailabilityGroupDatabaseMembershipFailure -f $formatArgs )
}
}
<#
.SYNOPSIS
Tests the database membership of the specified Availability Group.
.PARAMETER DatabaseName
The name of the database(s) to add to the availability group. This accepts wildcards.
.PARAMETER SQLServer
Hostname of the SQL Server where the primary replica of the availability group lives. If the
availability group is not currently on this server, the resource will attempt to connect to the
server where the primary replica lives.
.PARAMETER SQLInstanceName
Name of the SQL instance where the primary replica of the availability group lives. If the
availability group is not currently on this instance, the resource will attempt to connect to
the instance where the primary replica lives.
.PARAMETER AvailabilityGroupName
The name of the availability group in which to manage the database membership(s).
.PARAMETER BackupPath
The path used to seed the availability group replicas. This should be a path that is accessible
by all of the replicas.
.PARAMETER Ensure
Specifies the membership of the database(s) in the availability group. The options are:
- Present: The defined database(s) are added to the availability group. All other
databases that may be a member of the availability group are ignored.
- Absent: The defined database(s) are removed from the availability group. All other
databases that may be a member of the availability group are ignored.
The default is 'Present'.
.PARAMETER Force
When used with "Ensure = 'Present'" it ensures the specified database(s) are the only databases
that are a member of the specified Availability Group.
This parameter is ignored when 'Ensure' is 'Absent'.
.PARAMETER MatchDatabaseOwner
If set to $true, this ensures the database owner of the database on the primary replica is the
owner of the database on all secondary replicas. This requires the database owner is available
as a login on all replicas and that the PSDscRunAsCredential has impersonate permissions.
If set to $false, the owner of the database will be the PSDscRunAsCredential.
The default is '$true'.
.PARAMETER ProcessOnlyOnActiveNode
Specifies that the resource will only determine if a change is needed if the target node is the active host of the SQL Server Instance.
#>
function Test-TargetResource
{
[CmdletBinding()]
[OutputType([System.Boolean])]
param
(
[Parameter(Mandatory = $true)]
[System.String[]]
$DatabaseName,
[Parameter(Mandatory = $true)]
[System.String]
$SQLServer,
[Parameter(Mandatory = $true)]
[System.String]
$SQLInstanceName,
[Parameter(Mandatory = $true)]
[System.String]
$AvailabilityGroupName,
[Parameter(Mandatory = $true)]
[System.String]
$BackupPath,
[Parameter()]
[ValidateSet('Present', 'Absent')]
[System.String]
$Ensure = 'Present',
[Parameter()]
[Boolean]
$Force,
[Parameter()]
[Boolean]
$MatchDatabaseOwner,
[Parameter()]
[Boolean]
$ProcessOnlyOnActiveNode
)
$configurationInDesiredState = $true
$getTargetResourceParameters = @{
DatabaseName = $DatabaseName
SQLServer = $SQLServer
SQLInstanceName = $SQLInstanceName
AvailabilityGroupName = $AvailabilityGroupName
BackupPath = $BackupPath
}
$currentConfiguration = Get-TargetResource @getTargetResourceParameters
<#
If this is supposed to process only the active node, and this is not the
active node, don't bother evaluating the test.
#>
if ( $ProcessOnlyOnActiveNode -and -not $currentConfiguration.IsActiveNode )
{
Write-Verbose -Message ( $script:localizedData.NotActiveNode -f $env:COMPUTERNAME,$SQLInstanceName )
return $configurationInDesiredState
}
# Connect to the defined instance
$serverObject = Connect-SQL -SQLServer $SQLServer -SQLInstanceName $SQLInstanceName
# Get the Availability Group if it exists
if ( -not [string]::IsNullOrEmpty($currentConfiguration.AvailabilityGroupName) )
{
$availabilityGroup = $serverObject.AvailabilityGroups[$AvailabilityGroupName]
# Make sure we're communicating with the primary replica in order to make changes to the replica
$primaryServerObject = Get-PrimaryReplicaServerObject -ServerObject $serverObject -AvailabilityGroup $availabilityGroup
$matchingDatabaseNames = Get-MatchingDatabaseNames -DatabaseName $DatabaseName -ServerObject $primaryServerObject
$databasesNotFoundOnTheInstance = @()
if ( ( $Ensure -eq 'Present' ) -and $matchingDatabaseNames.Count -eq 0 )
{
$configurationInDesiredState = $false
Write-Verbose -Message ($script:localizedData.DatabasesNotFound -f ($DatabaseName -join ', '))
}
else
{
$databasesNotFoundOnTheInstance = Get-DatabaseNamesNotFoundOnTheInstance -DatabaseName $DatabaseName -MatchingDatabaseNames $matchingDatabaseNames
# If the databases specified are not present on the instance and the desired state is not Absent
if ( ( $databasesNotFoundOnTheInstance.Count -gt 0 ) -and ( $Ensure -ne 'Absent' ) )
{
$configurationInDesiredState = $false
Write-Verbose -Message ($script:localizedData.DatabasesNotFound -f ( $databasesNotFoundOnTheInstance -join ', ' ))
}
$getDatabasesToAddToAvailabilityGroupParameters = @{
DatabaseName = $DatabaseName
Ensure = $Ensure
ServerObject = $primaryServerObject
AvailabilityGroup = $availabilityGroup
}
$databasesToAddToAvailabilityGroup = Get-DatabasesToAddToAvailabilityGroup @getDatabasesToAddToAvailabilityGroupParameters
if ( $databasesToAddToAvailabilityGroup.Count -gt 0 )
{
$configurationInDesiredState = $false
Write-Verbose -Message ($script:localizedData.DatabaseShouldBeMember -f $AvailabilityGroupName, ( $databasesToAddToAvailabilityGroup -join ', ' ))
}
$getDatabasesToRemoveFromAvailabilityGroupParameters = @{
DatabaseName = $DatabaseName
Ensure = $Ensure
Force = $Force
ServerObject = $primaryServerObject
AvailabilityGroup = $availabilityGroup
}
$databasesToRemoveFromAvailabilityGroup = Get-DatabasesToRemoveFromAvailabilityGroup @getDatabasesToRemoveFromAvailabilityGroupParameters
if ( $databasesToRemoveFromAvailabilityGroup.Count -gt 0 )
{
$configurationInDesiredState = $false
Write-Verbose -Message ($script:localizedData.DatabaseShouldNotBeMember -f $AvailabilityGroupName, ( $databasesToRemoveFromAvailabilityGroup -join ', ' ))
}
}
}
else
{
$configurationInDesiredState = $false
Write-Verbose -Message ($script:localizedData.AvailabilityGroupDoesNotExist -f ($DatabaseName -join ', '))
}
return $configurationInDesiredState
}
<#
.SYNOPSIS
Get the databases that should be members of the Availability Group.
.PARAMETER DatabaseName
The name of the database(s) to add to the availability group. This accepts wildcards.
.PARAMETER Ensure
Specifies the membership of the database(s) in the availability group. The options are:
- Present: The defined database(s) are added to the availability group. All other
databases that may be a member of the availability group are ignored.
- Absent: The defined database(s) are removed from the availability group. All other
databases that may be a member of the availability group are ignored.
.PARAMETER ServerObject
The server object the databases should be in.
.PARAMETER AvailabilityGroup
The availability group object the databases should be a member of.
#>
function Get-DatabasesToAddToAvailabilityGroup
{
[CmdletBinding()]
param
(
[Parameter()]
[System.String[]]
$DatabaseName,
[Parameter(Mandatory = $true)]
[System.String]
$Ensure,
[Parameter(Mandatory = $true)]
[Microsoft.SqlServer.Management.Smo.Server]
$ServerObject,
[Parameter(Mandatory = $true)]
[Microsoft.SqlServer.Management.Smo.AvailabilityGroup]
$AvailabilityGroup
)
$matchingDatabaseNames = Get-MatchingDatabaseNames -DatabaseName $DatabaseName -ServerObject $ServerObject
# This is a hack to allow Compare-Object to work on an empty object
if ( $null -eq $matchingDatabaseNames )
{
$MatchingDatabaseNames = @('')
}
$databasesInAvailabilityGroup = $AvailabilityGroup.AvailabilityDatabases | Select-Object -ExpandProperty Name
# This is a hack to allow Compare-Object to work on an empty object
if ( $null -eq $databasesInAvailabilityGroup )
{
$databasesInAvailabilityGroup = @('')
}
$comparisonResult = Compare-Object -ReferenceObject $matchingDatabaseNames -DifferenceObject $databasesInAvailabilityGroup
$databasesToAddToAvailabilityGroup = @()
if ( $Ensure -eq 'Present' )
{
$databasesToAddToAvailabilityGroup = $comparisonResult | Where-Object -FilterScript { $_.SideIndicator -eq '<=' } | Select-Object -ExpandProperty InputObject
}
return $databasesToAddToAvailabilityGroup
}
<#
.SYNOPSIS
Get the databases that should not be members of the Availability Group.
.PARAMETER DatabaseName
The name of the database(s) to add to the availability group. This accepts wildcards.
.PARAMETER Ensure
Specifies the membership of the database(s) in the availability group. The options are:
- Present: The defined database(s) are added to the availability group. All other
databases that may be a member of the availability group are ignored.
- Absent: The defined database(s) are removed from the availability group. All other
databases that may be a member of the availability group are ignored.
.PARAMETER Force
When used with "Ensure = 'Present'" it ensures the specified database(s) are the only databases
that are a member of the specified Availability Group.
This parameter is ignored when 'Ensure' is 'Absent'.
.PARAMETER ServerObject
The server object the databases should not be in.
.PARAMETER AvailabilityGroup
The availability group object the databases should not be a member of.
#>
function Get-DatabasesToRemoveFromAvailabilityGroup
{
[CmdletBinding()]
param
(
[Parameter()]
[System.String[]]
$DatabaseName,
[Parameter(Mandatory = $true)]
[System.String]
$Ensure,
[Parameter()]
[Boolean]
$Force,
[Parameter(Mandatory = $true)]
[Microsoft.SqlServer.Management.Smo.Server]
$ServerObject,
[Parameter(Mandatory = $true)]
[Microsoft.SqlServer.Management.Smo.AvailabilityGroup]
$AvailabilityGroup
)
$matchingDatabaseNames = Get-MatchingDatabaseNames -DatabaseName $DatabaseName -ServerObject $ServerObject
if ( $null -eq $matchingDatabaseNames )
{
$MatchingDatabaseNames = @('')
}
$databasesInAvailabilityGroup = $AvailabilityGroup.AvailabilityDatabases | Select-Object -ExpandProperty Name
# This is a hack to allow Compare-Object to work on an empty object
if ( $null -eq $databasesInAvailabilityGroup )
{
$databasesInAvailabilityGroup = @('')
}
$comparisonResult = Compare-Object -ReferenceObject $matchingDatabaseNames -DifferenceObject $databasesInAvailabilityGroup -IncludeEqual
$databasesToRemoveFromAvailabilityGroup = @()
if ( 'Absent' -eq $Ensure )
{
$databasesToRemoveFromAvailabilityGroup = $comparisonResult | Where-Object -FilterScript { '==' -eq $_.SideIndicator } | Select-Object -ExpandProperty InputObject
}
elseif ( ( 'Present' -eq $Ensure ) -and ( $Force ) )
{
$databasesToRemoveFromAvailabilityGroup = $comparisonResult | Where-Object -FilterScript { '=>' -eq $_.SideIndicator } | Select-Object -ExpandProperty InputObject
}
return $databasesToRemoveFromAvailabilityGroup
}
<#
.SYNOPSIS
Get the database names that were specified in the configuration that do not exist on the instance.
.PARAMETER DatabaseName
The name of the database(s) to add to the availability group. This accepts wildcards.
.PARAMETER MatchingDatabaseNames
All of the databases names that match the supplied names and wildcards.
#>
function Get-MatchingDatabaseNames
{
[CmdletBinding()]
param
(
[Parameter()]
[System.String[]]
$DatabaseName,
[Parameter(Mandatory = $true)]
[Microsoft.SqlServer.Management.Smo.Server]
$ServerObject
)
$matchingDatabaseNames = @()
foreach ( $dbName in $DatabaseName )
{
$matchingDatabaseNames += $ServerObject.Databases | Where-Object -FilterScript { $_.Name -like $dbName } | Select-Object -ExpandProperty Name
}
return $matchingDatabaseNames
}
<#
.SYNOPSIS
Get the database names that were defined in the DatabaseName property but were not found on the instance.
.PARAMETER DatabaseName
The name of the database(s) to add to the availability group. This accepts wildcards.
.PARAMETER MatchingDatabaseNames
All of the database names that were found on the instance that match the supplied DatabaseName property.
#>
function Get-DatabaseNamesNotFoundOnTheInstance
{
[CmdletBinding()]
param
(
[Parameter()]
[System.String[]]
$DatabaseName,
[Parameter()]
[System.String[]]
$MatchingDatabaseNames
)
$databasesNotFoundOnTheInstance = @{}
foreach ( $dbName in $DatabaseName )
{
# Assume the database name was not found
$databaseToAddToAvailabilityGroupNotFound = $true
foreach ( $matchingDatabaseName in $matchingDatabaseNames )
{
if ( $matchingDatabaseName -like $dbName )
{
# If we found the database name, it's not missing
$databaseToAddToAvailabilityGroupNotFound = $false
}
}
$databasesNotFoundOnTheInstance.Add($dbName, $databaseToAddToAvailabilityGroupNotFound)
}
$result = $databasesNotFoundOnTheInstance.GetEnumerator() | Where-Object -FilterScript { $_.Value } | Select-Object -ExpandProperty Key
return $result
}