functions/Test-DbaTempDbConfig.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 |
#ValidationTags#Messaging,FlowControl,Pipeline,CodeStyle# function Test-DbaTempdbConfig { <# .SYNOPSIS Evaluates tempdb against several rules to match best practices. .DESCRIPTION Evaluates tempdb against a set of rules to match best practices. The rules are: * TF 1118 enabled - Is Trace Flag 1118 enabled (See KB328551). * File Count - Does the count of data files in tempdb match the number of logical cores, up to 8? * File Growth - Are any files set to have percentage growth? Best practice is all files have an explicit growth value. * File Location - Is tempdb located on the C:\? Best practice says to locate it elsewhere. * File MaxSize Set (optional) - Do any files have a max size value? Max size could cause tempdb problems if it isn't allowed to grow. * Data File Size Equal - Are the sizes of all the tempdb data files the same? Other rules can be added at a future date. .PARAMETER SqlInstance The target SQL Server instance or instances. SQL Server 2005 and higher are supported. .PARAMETER SqlCredential Login to the target instance using alternative credentials. Windows and SQL Authentication supported. Accepts credential objects (Get-Credential) .PARAMETER Detailed Output all properties, will be depreciated in 1.0.0 release. .PARAMETER EnableException By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch. .NOTES Tags: tempdb, configuration Author: Michael Fal (@Mike_Fal), http://mikefal.net Website: https://dbatools.io Copyright: (c) 2018 by dbatools, licensed under MIT License: MIT https://opensource.org/licenses/MIT Based on Amit Bannerjee's (@banerjeeamit) Get-TempDB function (https://github.com/amitmsft/SqlOnAzureVM/blob/master/Get-TempdbFiles.ps1) .LINK https://dbatools.io/Test-DbaTempdbConfig .EXAMPLE PS C:\> Test-DbaTempdbConfig -SqlInstance localhost Checks tempdb on the localhost machine. .EXAMPLE PS C:\> Test-DbaTempdbConfig -SqlInstance localhost | Select-Object * Checks tempdb on the localhost machine. All rest results are shown. .EXAMPLE PS C:\> Get-DbaCmsRegServer -SqlInstance sqlserver2014a | Test-DbaTempdbConfig | Select-Object * | Out-GridView Checks tempdb configuration for a group of servers from SQL Server Central Management Server (CMS). Output includes all columns. Send output to GridView. #> [CmdletBinding()] param ( [parameter(Mandatory, ValueFromPipeline)] [Alias("ServerInstance", "SqlServer")] [DbaInstance[]]$SqlInstance, [PSCredential]$SqlCredential, [switch]$Detailed, [switch]$EnableException ) begin { Test-DbaDeprecation -DeprecatedOn 1.0.0 -Parameter Detailed } process { foreach ($instance in $SqlInstance) { try { $server = Connect-SqlInstance -SqlInstance $instance -SqlCredential $SqlCredential -MinimumVersion 9 } catch { Stop-Function -Message "Failure" -Category ConnectionError -ErrorRecord $_ -Target $instance -Continue } # removed previous assumption that 2016+ will have it enabled $tfCheck = $server.Databases['tempdb'].Query("DBCC TRACEON (3604);DBCC TRACESTATUS(-1)") $current = ($tfCheck.TraceFlag -join ',').Contains('1118') [PSCustomObject]@{ ComputerName = $server.ComputerName InstanceName = $server.ServiceName SqlInstance = $server.DomainInstanceName Rule = 'TF 1118 Enabled' Recommended = $true CurrentSetting = $current IsBestPractice = $current -eq $true Notes = 'KB328551 describes how TF 1118 can benefit performance. SQL Server 2016 has this functionality enabled by default.' } Write-Message -Level Verbose -Message "TF 1118 evaluated" #get files and log files $tempdbFiles = Get-DbaDbFile -SqlInstance $server -Database tempdb [array]$dataFiles = $tempdbFiles | Where-Object Type -ne 1 $logFiles = $tempdbFiles | Where-Object Type -eq 1 Write-Message -Level Verbose -Message "TempDB file objects gathered" [PSCustomObject]@{ ComputerName = $server.ComputerName InstanceName = $server.ServiceName SqlInstance = $server.DomainInstanceName Rule = 'File Count' Recommended = [Math]::Min(8, $server.Processors) CurrentSetting = $dataFiles.Count IsBestPractice = $dataFiles.Count -eq [Math]::Min(8, $server.Processors) Notes = 'Microsoft recommends that the number of tempdb data files is equal to the number of logical cores up to 8.' } Write-Message -Level Verbose -Message "File counts evaluated." #test file growth $percData = $dataFiles | Where-Object GrowthType -ne 'KB' | Measure-Object $percLog = $logFiles | Where-Object GrowthType -ne 'KB' | Measure-Object $totalCount = $percData.Count + $percLog.Count if ($totalCount -gt 0) { $totalCount = $true } else { $totalCount = $false } [PSCustomObject]@{ ComputerName = $server.ComputerName InstanceName = $server.ServiceName SqlInstance = $server.DomainInstanceName Rule = 'File Growth in Percent' Recommended = $false CurrentSetting = $totalCount IsBestPractice = $totalCount -eq $false Notes = 'Set file growth to explicit values, not by percent.' } Write-Message -Level Verbose -Message "File growth settings evaluated." #test file Location $cdata = ($dataFiles | Where-Object PhysicalName -like 'C:*' | Measure-Object).Count + ($logFiles | Where-Object PhysicalName -like 'C:*' | Measure-Object).Count if ($cdata -gt 0) { $cdata = $true } else { $cdata = $false } [PSCustomObject]@{ ComputerName = $server.ComputerName InstanceName = $server.ServiceName SqlInstance = $server.DomainInstanceName Rule = 'File Location' Recommended = $false CurrentSetting = $cdata IsBestPractice = $cdata -eq $false Notes = "Do not place your tempdb files on C:\." } Write-Message -Level Verbose -Message "File locations evaluated." #Test growth limits $growthLimits = ($dataFiles | Where-Object MaxSize -gt 0 | Measure-Object).Count + ($logFiles | Where-Object MaxSize -gt 0 | Measure-Object).Count if ($growthLimits -gt 0) { $growthLimits = $true } else { $growthLimits = $false } [PSCustomObject]@{ ComputerName = $server.ComputerName InstanceName = $server.ServiceName SqlInstance = $server.DomainInstanceName Rule = 'File MaxSize Set' Recommended = $false CurrentSetting = $growthLimits IsBestPractice = $growthLimits -eq $false Notes = "Consider setting your tempdb files to unlimited growth." } Write-Message -Level Verbose -Message "MaxSize values evaluated." #Test Data File Size Equal $distinctCountSizeDataFiles = ($dataFiles | Group-Object -Property Size | Measure-Object).Count if ($distinctCountSizeDataFiles -eq 1) { $equalSizeDataFiles = $true } else { $equalSizeDataFiles = $false } $value = [PSCustomObject]@{ ComputerName = $server.ComputerName InstanceName = $server.ServiceName SqlInstance = $server.DomainInstanceName Rule = 'Data File Size Equal' Recommended = $true CurrentSetting = $equalSizeDataFiles IsBestPractice = $equalSizeDataFiles -eq $true Notes = "Consider creating equally sized data files." } Write-Message -Level Verbose -Message "Data File Size Equal evaluated." } } end { Test-DbaDeprecation -DeprecatedOn "1.0.0" -EnableException:$false -Alias Test-SqlTempDbConfiguration Test-DbaDeprecation -DeprecatedOn "1.0.0" -EnableException:$false -Alias Test-DbaTempDbConfiguration } } |