dba_tableUsageImpact
Analyze table and view usage by specified users to identify resource-intensive operations. Use database and user inputs to assess and optimize Teradata database performance.
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"
}
},
"title": "handle_dba_tableUsageImpactArguments",
"type": "object"
}