describe_table
Retrieve detailed table structure, including column names, data types, and constraints, from Oracle databases using schema-specific or global searches.
Instructions
Get table structure including columns, data types, and constraints
Input Schema
Name | Required | Description | Default |
---|---|---|---|
schema | No | Schema name (optional, searches all accessible schemas if not specified) | |
table_name | Yes | Table name |
Input Schema (JSON Schema)
{
"properties": {
"schema": {
"description": "Schema name (optional, searches all accessible schemas if not specified)",
"type": "string"
},
"table_name": {
"description": "Table name",
"type": "string"
}
},
"required": [
"table_name"
],
"type": "object"
}