Last active
December 30, 2023 13:52
-
-
Save martin-guth/1857236b79ee3e51a6a7470459bd1550 to your computer and use it in GitHub Desktop.
Basic test script on how to export to Excel using the module ImportExcel from a SQL query fired off by dbatools
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Import-Module dbatools; | |
Import-Module ImportExcel; | |
$credential = Get-Credential; | |
# get results from table | |
$result= Invoke-DbaQuery -SQLInstance localhost -Database master -Query "SELECT * FROM sys.tables" -SqlCredential $credential ; | |
# debug the output | |
$result | Out-GridView; | |
$begin = Get-Date; | |
# export to excel | |
#$result | Export-OOXML -FileFullPath test.xlsx -WorksheetName test -AutoFit -HeaderStyle WhiteSmoke; | |
$result | Export-Excel $outputpath -WorksheetName test -AutoFilter -AutoSize -BoldTopRow -FreezeTopRowFirstColumn; | |
$end = Get-Date; | |
echo "duration $($end-$begin)"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment