hana_describe_table
Analyze and retrieve the structure of a specified table in SAP HANA Cloud Database using schema and table names, enabling efficient data management and integration with Cursor IDE.
Instructions
Describe the structure of a specific table
Input Schema
Name | Required | Description | Default |
---|---|---|---|
schema_name | No | Name of the schema containing the table (optional) | |
table_name | Yes | Name of the table to describe |
Input Schema (JSON Schema)
{
"properties": {
"schema_name": {
"description": "Name of the schema containing the table (optional)",
"type": "string"
},
"table_name": {
"description": "Name of the table to describe",
"type": "string"
}
},
"required": [
"table_name"
],
"type": "object"
}