2021-09-27 10:38:12 +02:00
<#
2021-08-03 15:53:57 +02:00
. SYNOPSIS
2021-10-04 21:29:23 +02:00
Lists all tables of a SQL server database
2021-08-03 15:53:57 +02:00
. DESCRIPTION
2022-01-29 12:47:46 +01:00
This PowerShell script 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-03 15:53:57 +02:00
. LINK
https : / / github . com / fleschutz / PowerShell
2022-01-29 12:47:46 +01:00
. NOTES
2022-09-06 21:42:04 +02:00
Author : Markus Fleschutz | License : CC0
2021-08-03 15:53:57 +02:00
#>
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