getTableDetailInfo
Retrieve comprehensive metadata of a database table, including schema and index details, using a unique table identifier. Identify the table_guid parameter with listTables if unknown.
Instructions
Retrieve detailed metadata information about a specific database table including schema and index details. If you don't know the table_guid parameter, retrieve it using listTables.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
table_guid | Yes | Unique table identifier (format: dmsTableId.schemaName.tableName),Example: IDB_1567890.mySchema.myTable |
Input Schema (JSON Schema)
{
"properties": {
"table_guid": {
"description": "Unique table identifier (format: dmsTableId.schemaName.tableName),Example: IDB_1567890.mySchema.myTable",
"title": "Table Guid",
"type": "string"
}
},
"required": [
"table_guid"
],
"title": "get_meta_table_detail_infoArguments",
"type": "object"
}