functions/Test-DbaVirtualLogFile.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 |
function Test-DbaVirtualLogFile { <# .SYNOPSIS Returns database virtual log file information for database files on a SQL instance. .DESCRIPTION As you may already know, having a TLog file with too many VLFs can hurt database performance. Too many virtual log files can cause transaction log backups to slow down and can also slow down database recovery and, in extreme cases, even affect insert/update/delete performance. References: http://www.sqlskills.com/blogs/kimberly/transaction-log-vlfs-too-many-or-too-few/ http://blogs.msdn.com/b/saponsqlserver/archive/2012/02/22/too-many-virtual-log-files-vlfs-can-cause-slow-database-recovery.aspx If you've got a high number of VLFs, you can use Expand-SqlTLogResponsibly to reduce the number. .PARAMETER SqlServer SQLServer name or SMO object representing the SQL Server to connect to. This can be a collection and recieve pipeline input. .PARAMETER SqlCredential PSCredential object to connect under. If not specified, current Windows login will be used. .PARAMETER IncludeSystemDBs Switch parameter that when used will display system database information .PARAMETER Databases Specify one or more databases to process. .PARAMETER Exclude Specify one or more databases to exclude. .PARAMETER Detailed Returns all information provided by DBCC LOGINFO plus the server name and database name .NOTES Tags: DisasterRecovery, Backup 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-DbaVirtualLogFile .EXAMPLE Test-DbaVirtualLogFile -SqlServer sqlcluster Returns all user database virtual log file counts for the sqlcluster instance .EXAMPLE Test-DbaVirtualLogFile -SqlServer sqlserver | Where-Object {$_.Count -ge 50} Returns user databases that have more than or equal to 50 VLFs .EXAMPLE @('sqlserver','sqlcluster') | Test-DbaVirtualLogFile Returns all VLF information for the sqlserver and sqlcluster SQL Server instances. Processes data via the pipeline. .EXAMPLE Test-DbaVirtualLogFile -SqlServer sqlcluster -Databases db1, db2 Returns VLF counts for the db1 and db2 databases on sqlcluster. #> [CmdletBinding()] [OutputType([System.Collections.ArrayList])] param ([parameter(ValueFromPipeline, Mandatory = $true)] [Alias("ServerInstance", "SqlInstance")] [object[]]$SqlServer, [System.Management.Automation.PSCredential]$SqlCredential, [switch]$IncludeSystemDBs, [switch]$Detailed ) DynamicParam { if ($SqlServer) { return Get-ParamSqlDatabases -SqlServer $SqlServer[0] -SqlCredential $SqlCredential } } BEGIN { $databases = $psboundparameters.Databases $exclude = $psboundparameters.Exclude } PROCESS { foreach ($servername in $SqlServer) { Write-Verbose "Connecting to $servername" try { $server = Connect-SqlServer $servername -SqlCredential $SqlCredential } catch { Write-Warning "Can't connect to $instance, skipping..." Continue } $dbs = $server.Databases #If IncludeSystemDBs is true, include systemdbs #only look at online databases (Status equal normal) if ($databases.count -gt 0) { $dbs = $dbs | Where-Object { $databases -contains $_.Name } } if ($exclude.count -gt 0) { $dbs = $dbs | Where-Object { $exclude -notcontains $_.Name } } if ($IncludeSystemDBs) { $dbs = $dbs | Where-Object { $_.status -eq 'Normal' } } else { $dbs = $dbs | Where-Object { $_.status -eq 'Normal' -and $_.IsSystemObject -eq 0 } } foreach ($db in $dbs) { try { Write-Verbose "Querying $($db.name) on $servername." #Execute query against individual database and add to output if ($Detailed -eq $true) { $table = New-Object System.Data.Datatable $servercolumn = $table.Columns.Add("Server") $servercolumn.DefaultValue = $server.name $dbcolumn = $table.Columns.Add("Database") $dbcolumn.DefaultValue = $db.name $temptable = $db.ExecuteWithResults("DBCC LOGINFO").Tables foreach ($column in $temptable.Columns) { $null = $table.Columns.Add($column.ColumnName) } foreach ($row in $temptable.rows) { $table.ImportRow($row) } $table } else { [PSCustomObject]@{ Server = $server.name Database = $db.name Count = $db.ExecuteWithResults("DBCC LOGINFO").Tables.Rows.Count } } } catch { Write-Exception $_ Write-Warning "Unable to query $($db.name) on $servername" continue } } } } } |