analyze_table
Collect and analyze statistics for specified tables in Amazon Redshift to optimize database performance and query execution efficiency.
Instructions
Analyze table to collect statistics information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
schema | Yes | Schema name | |
table | Yes | Table name |
Input Schema (JSON Schema)
{
"properties": {
"schema": {
"description": "Schema name",
"type": "string"
},
"table": {
"description": "Table name",
"type": "string"
}
},
"required": [
"schema",
"table"
],
"type": "object"
}