hana_list_indexes
Retrieve all indexes for a specified table within SAP HANA Cloud Database. Input the table name and optional schema name to generate the index list.
Instructions
List all indexes for 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 list indexes for |
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 list indexes for",
"type": "string"
}
},
"required": [
"table_name"
],
"type": "object"
}