dba_tableUsageImpact
Analyze table and view usage by users to identify which resources drive the highest consumption in Teradata databases.
Instructions
Measure the usage of a table and views by users, this is helpful to understand what user and tables are driving most resource usage at any point in time.
Arguments: database_name - database name to analyze user_name - user name to analyze
Input Schema
Name | Required | Description | Default |
---|---|---|---|
database_name | No | ||
user_name | No |
Input Schema (JSON Schema)
{
"properties": {
"database_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Database Name"
},
"user_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "User Name"
}
},
"type": "object"
}