td_get_database
Retrieve detailed information about a specific Treasure Data database, including table count, permissions, metadata, and protection status for verification and auditing purposes.
Instructions
Get specific database details like table count, permissions, and metadata.
Shows detailed information about a named database. Use when you need to check
database properties, understand access permissions, or get table statistics.
Common scenarios:
- Verify database exists before running queries
- Check permission level (administrator, read-only, etc.)
- Get table count and creation/update timestamps
- Audit database properties for documentation
Returns creation time, table count, permissions, and protection status.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
database_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"database_name": {
"title": "Database Name",
"type": "string"
}
},
"required": [
"database_name"
],
"type": "object"
}