list_tables
Retrieve all tables from a specified database connection using DBeaver, with options to filter by schema and include views.
Instructions
List all tables in a database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
connectionId | Yes | The ID or name of the DBeaver connection | |
includeViews | No | Include views in the results | |
schema | No | Specific schema to list tables from (optional) |
Input Schema (JSON Schema)
{
"properties": {
"connectionId": {
"description": "The ID or name of the DBeaver connection",
"type": "string"
},
"includeViews": {
"default": false,
"description": "Include views in the results",
"type": "boolean"
},
"schema": {
"description": "Specific schema to list tables from (optional)",
"type": "string"
}
},
"required": [
"connectionId"
],
"type": "object"
}