hana_describe_index
Retrieve the structure of a specific index within a table in SAP HANA Cloud Database by specifying schema, table, and index names.
Instructions
Describe the structure of a specific index
Input Schema
Name | Required | Description | Default |
---|---|---|---|
index_name | Yes | Name of the index to describe | |
schema_name | No | Name of the schema containing the table (optional) | |
table_name | Yes | Name of the table containing the index |
Input Schema (JSON Schema)
{
"properties": {
"index_name": {
"description": "Name of the index to describe",
"type": "string"
},
"schema_name": {
"description": "Name of the schema containing the table (optional)",
"type": "string"
},
"table_name": {
"description": "Name of the table containing the index",
"type": "string"
}
},
"required": [
"table_name",
"index_name"
],
"type": "object"
}