PowerShell/Scripts/list-mysql-tables.ps1

26 lines
904 B
PowerShell
Raw Normal View History

2021-09-27 10:38:12 +02:00
<#
2021-08-29 17:50:03 +02:00
.SYNOPSIS
2021-10-04 21:29:23 +02:00
Lists all tables of a MySQL database
2021-08-29 17:50:03 +02:00
.DESCRIPTION
2022-01-29 12:47:46 +01:00
This PowerShell script lists all tables of the given MySQL database.
2021-08-29 17:50:03 +02:00
.EXAMPLE
2021-09-24 17:19:49 +02:00
PS> ./list-mysql-tables
2021-08-29 17:50:03 +02:00
.LINK
https://github.com/fleschutz/PowerShell
2022-01-29 12:47:46 +01:00
.NOTES
Author: Markus Fleschutz / License: CC0
2021-08-29 17:50:03 +02:00
#>
# This script lists all of the tables in a MySQL database and exports the list as a CSV
# Install-Module InvokeQuery
# Run the above command if you do not have this module
param(
[Parameter(Mandatory=$true)]$server,
[Parameter(Mandatory=$true)]$database,
[Parameter(Mandatory=$true)]$dbuser,
[Parameter(Mandatory=$true)]$dbpass
)
$csvfilepath = "$PSScriptRoot\mysql_tables.csv"
$result = Invoke-MySqlQuery -ConnectionString "server=$server; database=$database; user=$dbuser; password=$dbpass; pooling = false; convert zero datetime=True" -Sql "SHOW TABLES" -CommandTimeout 10000
$result | Export-Csv $csvfilepath -NoTypeInformation