functions/Test-DbaDiskAllocation.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 |
Function Test-DbaDiskAllocation { <# .SYNOPSIS Checks all disks on a computer to see if they are formatted to 64k. .DESCRIPTION Returns $true or $false by default for one server. Returns Server name and IsBestPractice for more than one server. Specify -Detailed for details. References: https://technet.microsoft.com/en-us/library/dd758814(v=sql.100).aspx - "The performance question here is usually not one of correlation per the formula, but whether the cluster size ..has been explicitly defined at 64 KB, which is a best practice for SQL Server." http://tk.azurewebsites.net/2012/08/ .PARAMETER ComputerName The SQL Server (or server in general) that you're connecting to. The -SqlInstance parameter also works. .PARAMETER NoSqlCheck Check to skip the check for SQL Data or Log files existing on the disk. .PARAMETER SqlCredential If you want to use SQL Server Authentication to connect. .PARAMETER Detailed Show a detailed list. .PARAMETER WhatIf Shows what would happen if the command were to run. No actions are actually performed. .PARAMETER Confirm Prompts you for confirmation before executing any changing operations within the command. .PARAMETER Silent Use this switch to disable any kind of verbose messages .NOTES Tags: CIM, Storage Requires: Windows sysadmin access on SQL Servers dbatools PowerShell module (https://dbatools.io, clemaire@gmail.com) Copyright (C) 2016 Chrissy LeMaire This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. .LINK https://dbatools.io/Test-DbaDiskAllocation .EXAMPLE Test-DbaDiskAllocation -ComputerName sqlserver2014a To return true or false for any disk not being formatted to 64k .EXAMPLE Test-DbaDiskAllocation -ComputerName sqlserver2014 -Detailed To return detailed information about disks containing SQL data from any instance being formatted to 64k .EXAMPLE Test-DbaDiskAllocation -ComputerName sqlserver2014a -NoSqlCheck To return true or false for ALL disks being formatted to 64k #> [CmdletBinding(SupportsShouldProcess = $true)] [OutputType("System.Collections.ArrayList", "System.Boolean")] Param ( [parameter(Mandatory = $true, ValueFromPipeline = $true)] [Alias("ServerInstance", "SqlServer", "SqlInstance")] [object[]]$ComputerName, [switch]$NoSqlCheck, [object]$SqlCredential, [switch]$Detailed, [switch]$Silent ) BEGIN { if ($Detailed) { Write-Message -Level Warning -Message "Detailed is deprecated and will be removed in dbatools 1.0" } $sessionoptions = New-CimSessionOption -Protocol DCOM Function Get-AllDiskAllocation { $alldisks = @() $SqlInstances = @() try { Write-Message -Level Verbose -Message "Getting disk information from $computer" # $query = "Select Label, BlockSize, Name from Win32_Volume WHERE FileSystem='NTFS'" # $disks = Get-WmiObject -ComputerName $ipaddr -Query $query | Sort-Object -Property Name $disks = Get-CimInstance -CimSession $CIMsession -ClassName win32_volume -Filter "FileSystem='NTFS'" -ErrorAction Stop | Sort-Object -Property Name } catch { Stop-Function -Message "Can't connect to WMI on $computer" return } if ($NoSqlCheck -eq $false) { Write-Message -Level Verbose -Message "Checking for SQL Services" $sqlservices = Get-Service -ComputerName $ipaddr | Where-Object { $_.DisplayName -like 'SQL Server (*' } foreach ($service in $sqlservices) { $instance = $service.DisplayName.Replace('SQL Server (', '') $instance = $instance.TrimEnd(')') $instancename = $instance.Replace("MSSQLSERVER", "Default") Write-Message -Level Verbose -Message "Found instance $instancename" if ($instance -eq 'MSSQLSERVER') { $SqlInstances += $ipaddr } else { $SqlInstances += "$ipaddr\$instance" } } $sqlcount = $SqlInstances.Count Write-Message -Level Verbose -Message "$sqlcount instance(s) found" } foreach ($disk in $disks) { if (!$disk.name.StartsWith("\\")) { $diskname = $disk.Name if ($NoSqlCheck -eq $false) { $sqldisk = $false foreach ($SqlInstance in $SqlInstances) { Write-Message -Level Verbose -Message "Connecting to SQL instance ($SqlInstance)" try { $smoserver = Connect-SqlInstance -SqlInstance $SqlInstance -SqlCredential $SqlCredential $sql = "Select count(*) as Count from sys.master_files where physical_name like '$diskname%'" $sqlcount = $smoserver.Databases['master'].ExecuteWithResults($sql).Tables[0].Count if ($sqlcount -gt 0) { $sqldisk = $true break } } catch { Stop-Function -Message "Failure" -Category ConnectionError -ErrorRecord $_ -Target $instance -Continue continue } } } if ($disk.BlockSize -eq 65536) { $IsBestPractice = $true } else { $IsBestPractice = $false } $windowsdrive = "$env:SystemDrive\" if ($diskname -eq $windowsdrive) { $IsBestPractice = $false } if ($NoSqlCheck -eq $false) { $alldisks += [PSCustomObject]@{ Server = $computer Name = $diskname Label = $disk.Label BlockSize = $disk.BlockSize IsSqlDisk = $sqldisk IsBestPractice = $IsBestPractice } } else { $alldisks += [PSCustomObject]@{ Server = $computer Name = $diskname Label = $disk.Label BlockSize = $disk.BlockSize IsBestPractice = $IsBestPractice } } } } return $alldisks } } PROCESS { foreach ($computer in $ComputerName) { $computer = Resolve-DbaNetworkName -ComputerName $computer -Credential $credential $ipaddr = $computer.IpAddress $Computer = $computer.ComputerName if (!$Computer) { Stop-Function -Message "Couldn't resolve hostname. Skipping." -Continue } Write-Message -Level Verbose -Message "Creating CimSession on $computer over WSMan" if (!$Credential) { $cimsession = New-CimSession -ComputerName $Computer -ErrorAction SilentlyContinue } else { $cimsession = New-CimSession -ComputerName $Computer -ErrorAction SilentlyContinue -Credential $Credential } if ($null -eq $cimsession.id) { Write-Message -Level Verbose -Message "Creating CimSession on $computer over WSMan failed. Creating CimSession on $computer over DCom" if (!$Credential) { $cimsession = New-CimSession -ComputerName $Computer -SessionOption $sessionoption -ErrorAction SilentlyContinue -Credential $Credential } else { $cimsession = New-CimSession -ComputerName $Computer -SessionOption $sessionoption -ErrorAction SilentlyContinue } } if ($null -eq $cimsession.id) { Stop-Function -Message "Can't create CimSession on $computer" -Target $Computer } Write-Message -Level Verbose -Message "Getting Power Plan information from $Computer" $data = Get-AllDiskAllocation $computer if ($data.Count -gt 1) { $data.GetEnumerator() } else { $data } } } } |