db_overview
Retrieve an overview of all tables in a StarRocks database, including columns, sample rows, and row counts. Use cache unless a refresh is specified.
Instructions
Get an overview (columns, sample rows, row count) for ALL tables in a database. Uses cache unless refresh=True
Input Schema
Name | Required | Description | Default |
---|---|---|---|
db | No | Database name. Optional: uses the default database if not provided. | |
refresh | No | Set to true to force refresh, ignoring cache. Defaults to false. |
Input Schema (JSON Schema)
{
"properties": {
"db": {
"default": null,
"description": "Database name. Optional: uses the default database if not provided.",
"title": "Db",
"type": "string"
},
"refresh": {
"default": false,
"description": "Set to true to force refresh, ignoring cache. Defaults to false.",
"title": "Refresh",
"type": "boolean"
}
},
"type": "object"
}