mysql_get_table_stats
Retrieve table statistics including row count and size information from MySQL databases for performance monitoring and capacity planning.
Instructions
Get statistics about a table (row count, size, etc.)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
database | No | Database name (uses current database if not specified) | |
table | Yes | Table name to get statistics for |
Input Schema (JSON Schema)
{
"properties": {
"database": {
"description": "Database name (uses current database if not specified)",
"type": "string"
},
"table": {
"description": "Table name to get statistics for",
"type": "string"
}
},
"required": [
"table"
],
"type": "object"
}