base_tableDDL
Generate and retrieve the DDL definition of a specified table in Teradata databases. Provides fully rendered SQL with metadata for database analysis and management.
Instructions
Displays the DDL definition of a table via SQLAlchemy, bind parameters if provided (prepared SQL), and return the fully rendered SQL (with literals) in metadata.
Arguments: database_name - Database name table_name - table name
Returns: ResponseType: formatted response with query results + metadata
Input Schema
Name | Required | Description | Default |
---|---|---|---|
database_name | Yes | ||
table_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"database_name": {
"title": "Database Name",
"type": "string"
},
"table_name": {
"title": "Table Name",
"type": "string"
}
},
"required": [
"database_name",
"table_name"
],
"title": "handle_base_tableDDLArguments",
"type": "object"
}