find_missing_indexes
Analyze query execution patterns to identify missing indexes in MSSQL Server databases, improving query performance and efficiency.
Instructions
Identify potentially missing indexes based on query execution patterns
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| connectionName | No | Named connection to use (e.g., 'production', 'staging') | |
| connectionString | No | SQL Server connection string (uses default if not provided) | |
| minImpact | No | Minimum impact score to include (default: 1000) | |
| schema | No | Schema name (default: dbo) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"connectionName": {
"description": "Named connection to use (e.g., 'production', 'staging')",
"type": "string"
},
"connectionString": {
"description": "SQL Server connection string (uses default if not provided)",
"type": "string"
},
"minImpact": {
"description": "Minimum impact score to include (default: 1000)",
"type": "number"
},
"schema": {
"description": "Schema name (default: dbo)",
"type": "string"
}
},
"type": "object"
}