base_tableUsage
Measure table and view usage by users in a Teradata schema to identify actively used database objects and analyze SQL query patterns with rendered SQL metadata.
Instructions
Measure the usage of a table and views by users in a given schema, this is helpful to infer what database objects are most actively used or drive most value via SQLAlchemy, bind parameters if provided (prepared SQL), and return the fully rendered SQL (with literals) in metadata.
Arguments: database_name - Database name
Returns: ResponseType: formatted response with query results + metadata
Input Schema
Name | Required | Description | Default |
---|---|---|---|
database_name | No |
Input Schema (JSON Schema)
{
"properties": {
"database_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Database Name"
}
},
"type": "object"
}