PowerShell/Scripts/convert-sql2csv.ps1

34 lines
1.3 KiB
PowerShell
Raw Normal View History

2021-04-10 10:40:03 +02:00
<#
2021-07-13 21:10:02 +02:00
.SYNOPSIS
convert-sql2csv.ps1 [<server>] [<database>] [<username>] [<password>] [<query>]
.DESCRIPTION
Convert the SQL database table to a CSV file
.EXAMPLE
PS> .\convert-sql2csv.ps1
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
2021-08-03 15:53:57 +02:00
Author: Markus Fleschutz
License: CC0
2021-04-10 10:40:03 +02:00
#>
2021-07-15 15:51:22 +02:00
param([string]$server = "", [string]$database = "", [string]$username = "", [string]$password = "", [string]$query = "")
2021-04-10 10:40:03 +02:00
try {
2021-07-15 15:51:22 +02:00
if ($server -eq "") { $server = read-host "Enter the hostname/IP address of the SQL server" }
if ($database -eq "") { $database = read-host "Enter the database name" }
if ($username -eq "") { $username = read-host "Enter the database username" }
if ($password -eq "") { $password = read-host "Enter the database user password" }
if ($query -eq "") { $query = read-host "Enter the database query" }
2021-04-10 10:40:03 +02:00
$secpasswd = ConvertTo-SecureString $password -AsPlainText -Force
$creds = New-Object System.Management.Automation.PSCredential ($username, $secpasswd)
$csvfilepath = "$PSScriptRoot\sqlserver_table.csv"
$result = Invoke-SqlServerQuery -Credential $creds -ConnectionTimeout 10000 -Database $database -Server $server -Sql $query -CommandTimeout 10000
$result | Export-Csv $csvfilepath -NoTypeInformation
exit 0
} catch {
2021-05-02 21:30:48 +02:00
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2021-04-10 10:40:03 +02:00
exit 1
}