This repository has been archived by the owner on Jan 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
PSSQLLib.psm1
1855 lines (1652 loc) · 59.5 KB
/
PSSQLLib.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
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
################################################################################
# Written by Sander Stad, SQLStad.nl
#
# (c) 2016, SQLStad.nl. All rights reserved.
#
# For more scripts and sample code, check out http://www.SQLStad.nl
#
# You may alter this code for your own *non-commercial* purposes (e.g. in a
# for-sale commercial tool). Use in your own environment is encouraged.
# You may republish altered code as long as you include this copyright and
# give due credit, but you must obtain prior permission before blogging
# this code.
#
# THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF
# ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED
# TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
# PARTICULAR PURPOSE.
#
# Changelog:
# v1.0:
# Initial version
# v1.1:
# Added several functions for hosts
# v1.2:
# Added functionality to get the host system information
# Cleaned up code, make it more readable
# Changed parameters to be consistent throughout functions
# v1.3:
# Added extra error catching
# v1.3.1:
# Added function for retrieving disk latencies
# v1.3.2:
# Added functionality for retrieving backups
# v1.3.3:
# Added functionality for retrieving the system uptime
# Added functionality for retrieving the instance uptime
# v1.4.0
# Added structures to the functions
# v1.4.1
# Added functionality for using ports connecting to SQL Server
# Changed the try/catch procedures to catch more error and work more efficiently
# v1.5
# Added functionality to export database objects to .sql script files
# Changed the error messages in the functions to be more descriptive
# v1.5.1
# Added functionality to export SQL Server objects to .sql script files
################################################################################
function Get-HostHarddisk
{
<#
.SYNOPSIS
Checks the host's harddisks
.DESCRIPTION
The function return the data of all the drives with size, available space, percentage used etc
.PARAMETER hst
This is the host that needs to be connected
.EXAMPLE
Get-HostHarddisk "SQL01"
.EXAMPLE
Get-HostHarddisk -hst "SQL01"
.INPUTS
.OUTPUTS
System.Array
.NOTES
.LINK
#>
[Cmdletbinding()]
param
(
[Parameter(Mandatory = $true, Position=1)]
[ValidateNotNullOrEmpty()]
[string]$hst = $null
)
try
{
# Get the data
$drives= Get-WmiObject -Class Win32_LogicalDisk -Computername $hst -Errorvariable errorvar | Where {$_.drivetype -eq 3}
# Create the result array
$result = @()
# Get the results
$result = $drives | Select -property `
@{N="Disk";E={$_.DeviceID}},VolumeName, `
@{N="FreeSpaceMB";E={"{0:N2}" -f ($_.Freespace/1Mb)}}, `
@{N="SizeMB";E={"{0:N2}" -f ($_.Size/1Mb)}}, `
@{N="PercentageUsed";E={"{0:N2}" -f (($_.Size - $_.FreeSpace) / $_.Size * 100)}}
return $result
}
catch
{
$errorMessage = $_.Exception.Message
$line = $_.InvocationInfo.ScriptLineNumber
$script_name = $_.InvocationInfo.ScriptName
Write-Host "Error: Occurred on line $line in script $script_name." -ForegroundColor Red
Write-Host "Error: $ErrorMessage" -ForegroundColor Red
}
}
function Get-HostHardware
{
<#
.SYNOPSIS
Checks the host's hardware
.DESCRIPTION
The function return the data of hardware in de host like number of processors
manufacturer, current timezone etc
.PARAMETER hst
This is the host that needs to be connected
.EXAMPLE
Get-HostHardware "SQL01"
.EXAMPLE
Get-HostHardware -hst "SQL01"
.INPUTS
.OUTPUTS
System.Array
.NOTES
.LINK
#>
[Cmdletbinding()]
param
(
[Parameter(Mandatory = $true, Position=1)]
[ValidateNotNullOrEmpty()]
[string]$hst = $null
)
try
{
# Get the data
$computer = Get-Wmiobject -Class win32_computersystem -Computername $hst -Errorvariable errorvar
$result = @()
# Get the result
$result = $computer | Select Description,NumberOfLogicalProcessors,NumberOfProcessors, `
@{N="TotalPhysicalMemoryGB";E={"{0:N2}" -f ($_.TotalPhysicalMemory/1Gb)}}, `
Model,Manufacturer,PartOfDomain,CurrentTimeZone,DaylightInEffect
# Return the result
return $result
}
catch
{
$errorMessage = $_.Exception.Message
$line = $_.InvocationInfo.ScriptLineNumber
$script_name = $_.InvocationInfo.ScriptName
Write-Host "Error: Occurred on line $line in script $script_name." -ForegroundColor Red
Write-Host "Error: $ErrorMessage" -ForegroundColor Red
}
}
function Get-HostOperatingSystem
{
<#
.SYNOPSIS
Checks the host's OS
.DESCRIPTION
The function return the data of OS in de host like the architecture,
the OS language, the version etc
.PARAMETER hst
This is the host that needs to be connected
.EXAMPLE
Get-HostOperatingSystems "SQL01"
.EXAMPLE
Get-HostOperatingSystems -hst "SQL01"
.INPUTS
.OUTPUTS
System.Array
.NOTES
.LINK
#>
[Cmdletbinding()]
param
(
[Parameter(Mandatory = $true, Position=1)]
[ValidateNotNullOrEmpty()]
[string]$hst = $null
)
try
{
# Get the data
$os = Get-WmiObject -Class win32_operatingsystem -Computername $hst -Errorvariable errorvar
$result = @()
# Get the results
$result = $os | Select `
OSArchitecture,OSLanguage,OSProductSuite,OSType,BuildNumbe,`
BuildType,Version,WindowsDirectory,PlusVersionNumber,`
@{N="FreePhysicalMemoryMB";E={"{0:N2}" -f ($_.FreePhysicalMemory / 1Mb)}},`
@{N="FreeSpaceInPagingFilesMB";E={"{0:N2}" -f ($_.FreeSpaceInPagingFiles)}},`
@{N="FreeVirtualMemoryMB";E={"{0:N2}" -f ($_.FreeVirtualMemory)}},`
PAEEnabled,ServicePackMajorVersion,ServicePackMinorVersion
#return the result
return $result
}
catch
{
$errorMessage = $_.Exception.Message
$line = $_.InvocationInfo.ScriptLineNumber
$script_name = $_.InvocationInfo.ScriptName
Write-Host "Error: Occurred on line $line in script $script_name." -ForegroundColor Red
Write-Host "Error: $ErrorMessage" -ForegroundColor Red
}
}
function Get-HostSQLServerServices
{
<#
.SYNOPSIS
Get the SQL Server services
.DESCRIPTION
The function return all the services present on the server regarding SQL Server
.PARAMETER hst
This is the host that needs to be connected
.EXAMPLE
Get-HostSQLServerServices "SQL01"
.EXAMPLE
Get-HostSQLServerService -hst "SQL01"
.INPUTS
.OUTPUTS
System.Array
.NOTES
.LINK
#>
[Cmdletbinding()]
param
(
[Parameter(Mandatory = $true, Position=1)]
[ValidateNotNullOrEmpty()]
[string]$hst = $null
)
try
{
return Get-WmiObject win32_Service -Computer $hst | where {$_.DisplayName -match "SQL Server"} | `
select SystemName, DisplayName, Name, State, Status, StartMode, StartName
}
catch
{
$errorMessage = $_.Exception.Message
$line = $_.InvocationInfo.ScriptLineNumber
$script_name = $_.InvocationInfo.ScriptName
Write-Host "Error: Occurred on line $line in script $script_name." -ForegroundColor Red
Write-Host "Error: $ErrorMessage" -ForegroundColor Red
}
}
function Get-HostSystemInformation()
{
<#
.SYNOPSIS
Get the system information of the host
.DESCRIPTION
Select information from the system like the domain, manufacturer, model etc.
.PARAMETER hst
This is the host that needs to be connected
.EXAMPLE
Get-HostSystemInformation "SQL01"
.EXAMPLE
Get-HostSystemInformation -hst "SQL01"
.INPUTS
.OUTPUTS
System.Array
.NOTES
.LINK
#>
[Cmdletbinding()]
param(
[Parameter(Mandatory = $true, Position=1)]
[ValidateNotNullOrEmpty()]
[string]$hst = $null
)
try
{
$data = Get-WmiObject -class "Win32_ComputerSystem" -Namespace "root\CIMV2" -ComputerName $hst
$result = @()
$result = $data | Select `
Name,Domain,Manufacturer,Model, `
NumberOfLogicalProcessors,NumberOfProcessors,LastLoadInfo, `
@{Name='TotalPhysicalMemoryMB';Expression={[math]::round(($_.TotalPhysicalMemory / 1024 / 1024))}}
return $result
}
catch
{
$errorMessage = $_.Exception.Message
$line = $_.InvocationInfo.ScriptLineNumber
$script_name = $_.InvocationInfo.ScriptName
Write-Host "Error: Occurred on line $line in script $script_name." -ForegroundColor Red
Write-Host "Error: $ErrorMessage" -ForegroundColor Red
}
}
function Get-HostUptime
{
<#
.SYNOPSIS
Get the uptime of the host
.DESCRIPTION
The script will retrieve the boot time and local time.
Based on the start time the uptime will be calculated.
.PARAMETER hst
This is the instance that needs to be connected
.EXAMPLE
Get-HostUptime "SQL01"
.EXAMPLE
Get-HostUptime -hst "SQL01"
.INPUTS
.OUTPUTS
System.Array
.NOTES
.LINK
#>
[Cmdletbinding()]
param
(
[Parameter(Mandatory = $true, Position=1)]
[ValidateNotNullOrEmpty()]
[string]$hst = $env:COMPUTERNAME
, [Parameter(Mandatory = $false, Position=2)]
$cred = [System.Management.Automation.PSCredential]::Empty
)
try
{
$os = Get-WmiObject win32_operatingsystem -ComputerName $hst -ErrorAction Stop -Credential $cred
$result = @()
$bootTime = $os.ConvertToDateTime($os.LastBootUpTime)
$uptime = $os.ConvertToDateTime($os.LocalDateTime) - $bootTime
$uptimeString = $uptime.Days.ToString() + " Day(s) " + $uptime.Hours.ToString() + ":" + $uptime.Minutes.ToString() + ":" + $uptime.Seconds.ToString()
$result = $os | Select -property `
@{N="BootTime";E={$bootTime}}, `
@{N="Uptime";E={$uptimeString}}
return $result
}
catch [Exception]
{
$errorMessage = $_.Exception.Message
$line = $_.InvocationInfo.ScriptLineNumber
$script_name = $_.InvocationInfo.ScriptName
Write-Host "Error: Occurred on line $line in script $script_name." -ForegroundColor Red
Write-Host "Error: $ErrorMessage" -ForegroundColor Red
}
}
##################################################
function Get-SQLAgentJobs
{
<#
.SYNOPSIS
Returns the SQL Server jobs
.DESCRIPTION
The function return all the jobs present in the SQL Server with information
like the jobtype, enabled or not, date created, last run date etc.
.PARAMETER instance
This is the instance that needs to be connected
.PARAMETER port
This is the port of the instance that needs to be used
.EXAMPLE
Get-SQLServerJobs "SQL01"
.EXAMPLE
Get-SQLServerJobs "SQL01\INST01"
.EXAMPLE
Get-SQLServerJobs "SQL01\INST01" 4321
.EXAMPLE
Get-SQLServerJobs -inst "SQL01\INST01"
.EXAMPLE
Get-SQLServerJobs -inst "SQL01\INST01" -port 4321
.INPUTS
.OUTPUTS
System.Array
.NOTES
.LINK
#>
[Cmdletbinding()]
param
(
[Parameter(Mandatory = $true, Position=1)]
[ValidateNotNullOrEmpty()]
[string]$inst = $null,
[Parameter(Mandatory = $false, Position=2)]
[string]$port = '1433'
)
# Check if assembly is loaded
Load-Assembly -name 'Microsoft.SqlServer.SMO'
# Create the server object and retrieve the information
try{
$server = New-Object ('Microsoft.SqlServer.Management.Smo.Server') "$inst,$port"
# Get the jobs
$server.JobServer.Jobs
# Create the result array
$result = @()
# Get the results
$result = $jobs | Select `
Name,JobType,IsEnabled,DateCreated,DateLastModified,LastRunDate,`
LastRunOutcome,NextRunDate,OwnerLoginName,Category | Sort-Object Name
# Return the result
return $result
}
catch [Exception]
{
$errorMessage = $_.Exception.Message
$line = $_.InvocationInfo.ScriptLineNumber
$script_name = $_.InvocationInfo.ScriptName
Write-Host "Error: Occurred on line $line in script $script_name." -ForegroundColor Red
Write-Host "Error: $ErrorMessage" -ForegroundColor Red
}
}
function Get-SQLConfiguration
{
<#
.SYNOPSIS
Get the contents of the configuration of the instance
.DESCRIPTION
The script will connect to the instance and execute a query to get the
configuration settings. It wil return a table with the configurations.
.PARAMETER instance
This is the instance that needs to be connected
.PARAMETER port
This is the port of the instance that needs to be used
.EXAMPLE
Get-SQLConfiguration "SQL01"
.EXAMPLE
Get-SQLConfiguration "SQL01\INST01"
.EXAMPLE
Get-SQLConfiguration "SQL01\INST01" 4321
.EXAMPLE
Get-SQLConfiguration -inst "SQL01\INST01"
.EXAMPLE
Get-SQLConfiguration -inst "SQL01\INST01" -port 4321
.INPUTS
.OUTPUTS
System.Array
.NOTES
.LINK
#>
[Cmdletbinding()]
param
(
[Parameter(Mandatory = $true, Position=1)]
[ValidateNotNullOrEmpty()]
[string]$inst = $null,
[Parameter(Mandatory = $false, Position=2)]
[string]$port = '1433'
)
# Check if assembly is loaded
Load-Assembly -name 'Microsoft.SqlServer.SMO'
# Create the server object and retrieve the information
try{
$server = New-Object ('Microsoft.SqlServer.Management.Smo.Server') "$inst,$port"
# Define the array
$result = @()
# Get the configurations
$configuration = $server.Configuration
# Get all the properties
$result = $configuration.Properties
# Return the result
return $result
}
catch [Exception]
{
$errorMessage = $_.Exception.Message
$line = $_.InvocationInfo.ScriptLineNumber
$script_name = $_.InvocationInfo.ScriptName
Write-Host "Error: Occurred on line $line in script $script_name." -ForegroundColor Red
Write-Host "Error: $ErrorMessage" -ForegroundColor Red
}
}
function Get-SQLDatabaseFiles
{
<#
.SYNOPSIS
Get the database files for each database
.DESCRIPTION
The function return all the database files from all databases
.PARAMETER instance
This is the instance that needs to be connected
.PARAMETER port
This is the port of the instance that needs to be used
.PARAMETER dbfilter
This is used to return only show details on certain databases
.EXAMPLE
Get-Get-SQLDatabaseFiles "SQL01"
.EXAMPLE
Get-Get-SQLDatabaseFiles "SQL01\INST01"
.EXAMPLE
Get-Get-SQLDatabaseFiles "SQL01\INST01" 4321
.EXAMPLE
Get-Get-SQLDatabaseFiles -inst "SQL01\INST01"
.EXAMPLE
Get-Get-SQLDatabaseFiles -inst "SQL01\INST01" -port 4321
.INPUTS
.OUTPUTS
System.Array
.NOTES
.LINK
#>
[Cmdletbinding()]
param
(
[Parameter(Mandatory = $true, Position=1)]
[ValidateNotNullOrEmpty()]
[string]$inst = $null,
[Parameter(Mandatory = $false, Position=2)]
[string]$port = '1433'
)
# Check if assembly is loaded
Load-Assembly -name 'Microsoft.SqlServer.SMO'
# Create the server object and retrieve the information
try{
$server = New-Object ('Microsoft.SqlServer.Management.Smo.Server') "$inst,$port"
# Define the array
$dataFiles = @()
$logFiles = @()
$result = @()
# Get all the databases
$databases = $server.Databases
# Loop through all the databases
foreach($database in $databases)
{
try{
# Get the filegroups for the database
$filegroups = $database.FileGroups
# Loop through all the filegroups
foreach($filegroup in $filegroups)
{
# Get all the data files from the filegroup
$files = $filegroup.Files
# Loop through all the data files
foreach($file in $files)
{
$result += $file | Select `
@{Name="DatabaseName"; Expression={$database.Name}}, Name, `
@{Name="FileType";Expression={"ROWS"}}, `
@{Name="Directory"; Expression={$file.FileName | Split-Path -Parent}}, `
@{Name="FileName"; Expression={$file.FileName | Split-Path -Leaf}}, `
Growth, GrowthType, Size, UsedSpace
}
}
# Get all the data files from the filegroup
$files = $database.LogFiles
# Loop through all the log files
foreach($file in $files)
{
$result += $file | Select `
@{Name="DatabaseName"; Expression={$database.Name}}, Name, `
@{Name="FileType";Expression={"LOG"}}, `
@{Name="Directory"; Expression={$file.FileName | Split-Path -Parent}}, `
@{Name="FileName"; Expression={$file.FileName | Split-Path -Leaf}}, `
Growth, GrowthType, Size, UsedSpace
}
}
catch{
}
}
return $result
}
catch [Exception]
{
$errorMessage = $_.Exception.Message
$line = $_.InvocationInfo.ScriptLineNumber
$script_name = $_.InvocationInfo.ScriptName
Write-Host "Error: Occurred on line $line in script $script_name." -ForegroundColor Red
Write-Host "Error: $ErrorMessage" -ForegroundColor Red
}
}
function Get-SQLDatabasePrivileges
{
<#
.SYNOPSIS
Gets the users in the database and looks up the roles
.DESCRIPTION
The function return all the database users with their roles in the database
.PARAMETER instance
This is the instance that needs to be connected
.PARAMETER port
This is the port of the instance that needs to be used
.EXAMPLE
Get-SQLDatabasePrivileges "SQL01"
.EXAMPLE
Get-SQLDatabasePrivileges "SQL01\INST01"
.EXAMPLE
Get-SQLDatabasePrivileges "SQL01\INST01" 4321
.EXAMPLE
Get-SQLDatabasePrivileges -inst "SQL01\INST01"
.EXAMPLE
Get-SQLDatabasePrivileges -inst "SQL01\INST01" -port 4321
.INPUTS
.OUTPUTS
System.Array
.NOTES
.LINK
#>
[Cmdletbinding()]
param
(
[Parameter(Mandatory = $true, Position=1)]
[ValidateNotNullOrEmpty()]
[string]$inst = $null,
[Parameter(Mandatory = $false, Position=2)]
[string]$port = '1433'
)
# Check if assembly is loaded
Load-Assembly -name 'Microsoft.SqlServer.SMO'
# Create the server object and retrieve the information
try{
$server = New-Object ('Microsoft.SqlServer.Management.Smo.Server') "$inst,$port"
# Create the result array
$result = @()
# Create the memberRoles array
$userRoles = @()
# Get all the databases
$databases = $server.Databases
# Loop through the databases
foreach($database in $databases)
{
# Get all the logins
$users = $database.Users
# Get all the roles
$roles = $database.Roles
# Loop through the logins
foreach($user in $users)
{
# Check if user is not a system user
if(
($user.Name -ne "dbo") `
-and ($user.Name -notlike "##*") `
-and ($user.Name -ne "INFORMATION_SCHEMA") `
-and ($user.Name -ne "sys") `
-and ($user.Name -ne "guest"))
{
# Loop through the roles
foreach($role in $roles)
{
# Get all the members of the role
$roleMembers = $role.EnumMembers()
# Check if the login is in the list
if($roleMembers -contains $user.Name)
{
$userRoles += $role.Name
}
}
# Combine the results
$result += $database | Select `
@{N="DatabaseName";E={$database.Name}},`
@{N="UserName";E={$user.Name}},`
@{N="UserType"; E={$user.LoginType}},`
@{N="DatabaseRoles";E={([string]::Join(",", $userRoles))}}
}
# Clear the array
$userRoles = @()
}
}
return $result
}
catch [Exception]
{
$errorMessage = $_.Exception.Message
$line = $_.InvocationInfo.ScriptLineNumber
$script_name = $_.InvocationInfo.ScriptName
Write-Host "Error: Occurred on line $line in script $script_name." -ForegroundColor Red
Write-Host "Error: $ErrorMessage" -ForegroundColor Red
}
}
function Get-SQLDatabases
{
<#
.SYNOPSIS
Get the SQL Server database settings
.DESCRIPTION
This function gets the settings of the prent databases and returns
the data in the form of a table.
.PARAMETER instance
This is the instance that needs to be connected
.PARAMETER port
This is the port of the instance that needs to be used
.EXAMPLE
Get-Get-SQLDatabases "SQL01"
.EXAMPLE
Get-Get-SQLDatabases "SQL01\INST01"
.EXAMPLE
Get-Get-SQLDatabases "SQL01\INST01" 4321
.EXAMPLE
Get-Get-SQLDatabases -inst "SQL01\INST01"
.EXAMPLE
Get-Get-SQLDatabases -inst "SQL01\INST01" -port 4321
.INPUTS
.OUTPUTS
System.Array
.NOTES
.LINK
#>
[Cmdletbinding()]
param
(
[Parameter(Mandatory = $true, Position=1)]
[ValidateNotNullOrEmpty()]
[string]$inst = $null,
[Parameter(Mandatory = $false, Position=2)]
[string]$port = '1433'
)
# Check if assembly is loaded
Load-Assembly -name 'Microsoft.SqlServer.SMO'
# Create the server object and retrieve the information
try{
$server = New-Object ('Microsoft.SqlServer.Management.Smo.Server') "$inst,$port"
# Define the array
$result = @()
# Get all the databases
$databases = $server.Databases
# Get the properties of each database
$result = $databases | Select `
ID,Name,AutoClose,AutoCreateIncrementalStatisticsEnabled,`
AutoCreateStatisticsEnabled,AutoShrink,AutoUpdateStatisticsAsync,AutoUpdateStatisticsEnabled,`
AvailabilityGroupName,CloseCursorsOnCommitEnabled,Collation,`
CompatibilityLevel,CreateDate,DataSpaceUsage,`
DelayedDurability,EncryptionEnabled,HasDatabaseEncryptionKey,HasFileInCloud,HasFullBackup,`
IndexSpaceUsage,IsDbSecurityAdmin,IsFullTextEnabled,IsManagementDataWarehouse,IsMirroringEnabled,`
LastBackupDate,LastDifferentialBackupDate,LastLogBackupDate,`
Owner,PageVerify,PolicyHealthState,PrimaryFilePath,ReadOnly,`
RecoveryModel,RecursiveTriggersEnabled,Size,SnapshotIsolationState,SpaceAvailable,`
Status,TargetRecoveryTime,Trustworthy,UserAccess,UserName,Version
# Return the result
return $result
}
catch [Exception]
{
$errorMessage = $_.Exception.Message
$line = $_.InvocationInfo.ScriptLineNumber
$script_name = $_.InvocationInfo.ScriptName
Write-Host "Error: Occurred on line $line in script $script_name." -ForegroundColor Red
Write-Host "Error: $ErrorMessage" -ForegroundColor Red
}
}
function Get-SQLDatabaseUsers
{
<#
.SYNOPSIS
Get the database users
.DESCRIPTION
The function returns all the database users present
.PARAMETER instance
This is the instance that needs to be connected
.PARAMETER port
This is the port of the instance that needs to be used
.PARAMETER dbfilter
This is used to return only show details on certain databases
.EXAMPLE
Get-SQLDatabaseUsers "SQL01"
.EXAMPLE
Get-SQLDatabaseUsers "SQL01\INST01"
.EXAMPLE
Get-SQLDatabaseUsers "SQL01\INST01" 4321
.EXAMPLE
Get-SQLDatabaseUsers -inst "SQL01\INST01"
.EXAMPLE
Get-SQLDatabaseUsers -inst "SQL01\INST01" -port 4321
.EXAMPLE
Get-SQLDatabaseUsers -inst "SQL01\INST01" -port 4321 -dbfilter "tempdb,msdb"
.INPUTS
.OUTPUTS
System.Array
.NOTES
.LINK
#>
[Cmdletbinding()]
param
(
[Parameter(Mandatory = $true, Position=1)]
[ValidateNotNullOrEmpty()]
[string]$inst = $null,
[Parameter(Mandatory = $false, Position=2)]
[string]$port = '1433'
, [Parameter(Mandatory = $false, Position=3)]
[ValidateNotNullOrEmpty()]
[string]$dbfilter = $null
)
# Check if assembly is loaded
Load-Assembly -name 'Microsoft.SqlServer.SMO'
# Create the server object and retrieve the information
try{
$server = New-Object ('Microsoft.SqlServer.Management.Smo.Server') "$inst,$port"
# Create the result array
$result = @()
# Get all the databases
$databases = $server.Databases
# Loop through the databases
foreach($database in $databases)
{
# Get the database users
$databaseUsers = $database.Users
# Get the result
$result += $databaseUsers | Select `
Parent,Name,AsymmetricKey,AuthenticationType,Certificate,`
CreateDate,DateLastModified,DefaultLanguageLcid,DefaultLanguageName,`
DefaultSchema,HasDBAccess,ID,IsSystemObject,Login,LoginType,`
PolicyHealthState,Sid,UserType
}
# Return the results
return $result
}
catch [Exception]
{
$errorMessage = $_.Exception.Message
$line = $_.InvocationInfo.ScriptLineNumber
$script_name = $_.InvocationInfo.ScriptName
Write-Host "Error: Occurred on line $line in script $script_name." -ForegroundColor Red
Write-Host "Error: $ErrorMessage" -ForegroundColor Red
}
}
function Get-SQLDiskLatencies
{
<#
.SYNOPSIS
Get the latencies SQL Server registered on disk
.DESCRIPTION
The script will execute a query against the instance and retrieve
the read and write latencies which SQL Server collected.
.PARAMETER instance
This is the instance that needs to be connected
.PARAMETER port
This is the port of the instance that needs to be used
.EXAMPLE
Get-SQLDiskLatencies "SQL01"
.EXAMPLE
Get-SQLDiskLatencies "SQL01\INST01"
.EXAMPLE
Get-SQLDiskLatencies "SQL01\INST01" 4321
.EXAMPLE
Get-SQLDiskLatencies -inst "SQL01\INST01"
.EXAMPLE
Get-SQLDiskLatencies -inst "SQL01\INST01" port 4321
.INPUTS
.OUTPUTS
System.Array
.NOTES
.LINK
#>
[Cmdletbinding()]
param
(
[Parameter(Mandatory = $true, Position=1)]
[ValidateNotNullOrEmpty()]
[string]$inst = $null,
[Parameter(Mandatory = $false, Position=2)]
[string]$port = '1433'
)
$query = '
SELECT
DB_NAME(vfs.database_id) AS [Database],
LEFT (mf.physical_name, 2) AS [Drive],
mf.physical_name AS [PhysicalFileName],
--virtual file latency
CASE WHEN num_of_reads = 0
THEN 0 ELSE (io_stall_read_ms / num_of_reads) END AS [ReadLatency],
CASE WHEN num_of_writes = 0
THEN 0 ELSE (io_stall_write_ms / num_of_writes) END AS [WriteLatency],
CASE WHEN (num_of_reads = 0 AND num_of_writes = 0)
THEN 0 ELSE (io_stall / (num_of_reads + num_of_writes)) END AS [Latency],
--avg bytes per IOP
CASE WHEN num_of_reads = 0
THEN 0 ELSE (num_of_bytes_read / num_of_reads) END AS [AvgBPerRead],
CASE WHEN io_stall_write_ms = 0
THEN 0 ELSE (num_of_bytes_written / num_of_writes) END AS [AvgBPerWrite],
CASE WHEN (num_of_reads = 0 AND num_of_writes = 0)
THEN 0 ELSE ((num_of_bytes_read + num_of_bytes_written) /
(num_of_reads + num_of_writes)) END AS [AvgBPerTransfer],
num_of_reads AS [CountReads],
num_of_writes AS [CountWrites],
(num_of_reads+num_of_writes) AS [CountTotalIO],
CONVERT(NUMERIC(10,2),(CAST(num_of_reads AS FLOAT)/ CAST((num_of_reads+num_of_writes) AS FLOAT) * 100)) AS [PercentageRead],
CONVERT(NUMERIC(10,2),(CAST(num_of_writes AS FLOAT)/ CAST((num_of_reads+num_of_writes) AS FLOAT) * 100)) AS [PercentageWrite]
FROM sys.dm_io_virtual_file_stats (NULL,NULL) AS vfs
JOIN sys.master_files AS mf
ON vfs.database_id = mf.database_id
AND vfs.file_id = mf.file_id
ORDER BY DB_NAME(vfs.database_id);
GO
'
try{
$result = Invoke-Sqlcmd -ServerInstance $inst -Query $query
}
catch [Exception]
{
$errorMessage = $_.Exception.Message
$line = $_.InvocationInfo.ScriptLineNumber
$script_name = $_.InvocationInfo.ScriptName
Write-Host "Error: Occurred on line $line in script $script_name." -ForegroundColor Red
Write-Host "Error: $ErrorMessage" -ForegroundColor Red
}
return $result
}
function Get-SQLInstanceSettings
{
<#
.SYNOPSIS
Get the SQL Server instance settings
.DESCRIPTION
This function gets the settings of the instance and return
the data in the form of a table.
.PARAMETER instance
This is the instance that needs to be connected
.PARAMETER port
This is the port of the instance that needs to be used
.EXAMPLE
Get-SQLInstance "SQL01"
.EXAMPLE
Get-SQLInstance "SQL01\INST01"
.EXAMPLE
Get-SQLInstance "SQL01\INST01" 4321