functions/Export-DbaDiagnosticQuery.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 |
function Export-DbaDiagnosticQuery { <# .SYNOPSIS Export-DbaDiagnosticQuery can convert ouput generated by Invoke-DbaDiagnosticQuery to CSV or Excel .DESCRIPTION The default output format of Invoke-DbaDiagnosticQuery is a custom object. It can also output to CSV and Excel. However, CSV output can generate a lot of files and Excel output depends on the ImportExcel module by Doug Fike (https://github.com/dfinke/ImportExcel) Export-DbaDiagnosticQuery can be used to convert from the default export type to the other available export types. .PARAMETER InputObject Specifies the objects to convert .PARAMETER ConvertTo Specifies the output type. Valid choices are Excel and CSV. CSV is the default. .PARAMETER Path Specifies the path to the output files. .PARAMETER Suffix Suffix for the filename. It's datetime by default. .PARAMETER Silent Use this switch to disable any kind of Output messages .NOTES Tags: Query Author: André Kamman (@AndreKamman), http://clouddba.io Website: https://dbatools.io Copyright: (C) Chrissy LeMaire, clemaire@gmail.com License: GNU GPL v3 https://opensource.org/licenses/GPL-3.0 .LINK https://dbatools.io/Export-DbaDiagnosticQuery .EXAMPLE Invoke-DbaDiagnosticQuery -SqlInstance sql2016 | Export-DbaDiagnosticQuery -Path c:\temp Converts output from Invoke-DbaDiagnosticQuery to multiple CSV files .EXAMPLE $output = Invoke-DbaDiagnosticQuery -SqlInstance sql2016 Export-DbaDiagnosticQuery -InputObject $output -ConvertTo Excel Converts output from Invoke-DbaDiagnosticQuery to Excel worksheet(s) in the Documents folder #> [CmdletBinding()] param ( [parameter(Mandatory = $true, ValueFromPipeline = $true)] [object[]]$InputObject, [ValidateSet("Excel", "Csv")] [string]$ConvertTo = "Csv", [System.IO.FileInfo]$Path = [Environment]::GetFolderPath("mydocuments"), [string]$Suffix = "$(Get-Date -format 'yyyyMMddHHmmssms')", [switch]$Silent ) begin { if ($ConvertTo -eq "Excel") { try { Import-Module ImportExcel -ErrorAction Stop } catch { $message = "Failed to load module, exporting to Excel feature is not available Install the module from: https://github.com/dfinke/ImportExcel Valid alternative conversion format is csv" Stop-Function -Message $message return } } if(!$(Test-Path $Path)) { try { New-Item $Path -ItemType Directory -ErrorAction Stop | Out-Null Write-Message -Level Output -Message "Created directory $Path" } catch { Stop-Function -Message "Failed to create directory $Path" -Continue } } Function Remove-InvalidFileNameChars { [CmdletBinding()] param ( [Parameter(Mandatory = $true, Position = 0, ValueFromPipeline = $true, ValueFromPipelineByPropertyName = $true)] [String]$Name ) $Name = $Name.Replace(" ","-") $invalidChars = [IO.Path]::GetInvalidFileNameChars() -join '' $re = "[{0}]" -f [RegEx]::Escape($invalidChars) return ($Name -replace $re) } } process { if (Test-FunctionInterrupt) { return } foreach ($row in $InputObject) { $results = $row.Result $name = $row.Name $SqlInstance = $row.SqlInstance.Replace("\", "$") $dbname = $row.DatabaseName $number = $row.Number if ($null -eq $results){ Stop-Function -Message "Resultset was empty for $name" -Target $row -Continue } foreach ($result in $results) { if ($null -eq $result) { Stop-Function -Message "Result was empty for $name" -Target $result -Continue } $queryname = Remove-InvalidFileNameChars -Name $Name $excelfilename = "$Path\$SqlInstance-DQ-$Suffix.xlsx" $exceldbfilename = "$Path\$SqlInstance-DQ-$dbname-$Suffix.xlsx" $csvdbname = "$Path\$SqlInstance-$dbname-DQ-$number-$queryname-$Suffix.csv" $csvfilename = "$Path\$SqlInstance-DQ-$number-$queryname-$Suffix.csv" switch ($ConvertTo) { "Excel" { if ($result.dbSpecific) { Write-Message -Level Output -Message "Exporting $exceldbfilename" $result.result | Export-Excel -Path $exceldbfilename -WorkSheetname $result.Name -AutoSize -AutoFilter -BoldTopRow -FreezeTopRow } else { Write-Message -Level Output -Message "Exporting $excelfilename" $result.result | Export-Excel -Path $excelfilename -WorkSheetname $result.Name -AutoSize -AutoFilter -BoldTopRow -FreezeTopRow } } "csv" { if ($result.dbSpecific) { Write-Message -Level Output -Message "Exporting $csvdbfilename" $result | Export-Csv -Path $csvdbfilename -NoTypeInformation -Append } else { Write-Message -Level Output -Message "Exporting $csvfilename" $result | Export-Csv -Path $csvfilename -NoTypeInformation -Append } } } } } } } |