2021-09-27 10:38:12 +02:00
<#
2021-08-03 15:53:57 +02:00
. SYNOPSIS
list-sql -tables . ps1
. DESCRIPTION
2021-09-24 17:19:49 +02:00
Lists all tables in a SQL server database and exports the list as CSV
2021-08-03 15:53:57 +02:00
Install-Module InvokeQuery
2021-08-29 17:50:03 +02:00
Run the above command if you do not have this module .
2021-08-03 15:53:57 +02:00
. EXAMPLE
2021-09-24 17:19:49 +02:00
PS > . / list-sql -tables
2021-08-29 17:50:03 +02:00
. NOTES
Author : Markus Fleschutz · License : CC0
2021-08-03 15:53:57 +02:00
. LINK
https : / / github . com / fleschutz / PowerShell
#>
2021-04-10 10:51:05 +02:00
param (
[ Parameter ( Mandatory = $true ) ] $server ,
[ Parameter ( Mandatory = $true ) ] $database ,
[ Parameter ( Mandatory = $true ) ] $username ,
[ Parameter ( Mandatory = $true ) ] $password
)
$secpasswd = ConvertTo-SecureString $password -AsPlainText -Force
$creds = New-Object System . Management . Automation . PSCredential ( $username , $secpasswd )
$csvfilepath = " $PSScriptRoot \sqlserver_tables.csv "
$result = Invoke-SqlServerQuery -Credential $creds -ConnectionTimeout 10000 -Database $database -Server $server -Sql " SELECT TABLE_NAME FROM $database .INFORMATION_SCHEMA.TABLES WHERE TABLE_TYPE = 'BASE TABLE' " -CommandTimeout 10000
$result | Export-Csv $csvfilepath -NoTypeInformation