describe_table
Retrieve table structure details from an Oracle database by specifying the table name. Simplify database analysis and troubleshooting with clear metadata insights.
Instructions
Get a description of a table in the oracle database"
Args:
table_name (string): The name of the table to describe
Input Schema
Name | Required | Description | Default |
---|---|---|---|
table_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"table_name": {
"title": "Table Name",
"type": "string"
}
},
"required": [
"table_name"
],
"title": "describe_tableArguments",
"type": "object"
}