analyze_schema
Analyze database schema to generate a detailed summary of tables, views, and their relationships, helping users understand and manage data structure in CockroachDB.
Instructions
Analyze the schema and provide a summary of tables, views, and relationships.
Args: db_schema (str): Schema name (default: "public").
Returns: Summary and details of tables, views, and relationships.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
db_schema | No | public |
Input Schema (JSON Schema)
{
"properties": {
"db_schema": {
"default": "public",
"title": "Db Schema",
"type": "string"
}
},
"title": "analyze_schemaArguments",
"type": "object"
}