list_tables
Retrieve all database tables with metadata to analyze schema structure and identify available data sources in Oracle Database.
Instructions
List all tables in the database with metadata
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| owner | No | Filter by schema owner (optional) |
Input Schema (JSON Schema)
{
"properties": {
"owner": {
"default": null,
"description": "Filter by schema owner (optional)",
"type": "string"
}
},
"type": "object"
}