dba_tableSqlList
Retrieve a list of SQL queries executed against a specific table in Teradata over a defined period. Input table name and number of days for targeted query history tracking.
Instructions
Get a list of SQL run against a table in the last number of days.
Arguments: table_name - table name no_days - number of days
Returns: ResponseType: formatted response with query results + metadata
Input Schema
Name | Required | Description | Default |
---|---|---|---|
no_days | No | ||
table_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"no_days": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 7,
"title": "No Days"
},
"table_name": {
"title": "Table Name",
"type": "string"
}
},
"required": [
"table_name"
],
"title": "handle_dba_tableSqlListArguments",
"type": "object"
}