list_tables
Retrieve all tables from a SQL Server database to understand database structure and available data sources. Optionally filter by schema name to focus on specific table groups.
Instructions
Lists all the tables in the database
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| schemaName | No | Schema name to filter tables (default: dbo) | dbo |
Input Schema (JSON Schema)
{
"properties": {
"schemaName": {
"default": "dbo",
"description": "Schema name to filter tables (default: dbo)",
"type": "string"
}
},
"type": "object"
}