PowerShell/Scripts/list-sql-tables.ps1

27 lines
1011 B
PowerShell
Raw Normal View History

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
2021-10-15 23:09:08 +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
#>
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