list_views
Retrieve and display all views in a SQL Server database, including schema and system view details, using customizable connection settings.
Instructions
List all views in the database with their basic information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
connectionName | No | Named connection to use (e.g., 'production', 'staging') | |
connectionString | No | SQL Server connection string (uses default if not provided) | |
includeSystemViews | No | Include system views (default: false) | |
schema | No | Schema name (default: dbo) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"connectionName": {
"description": "Named connection to use (e.g., 'production', 'staging')",
"type": "string"
},
"connectionString": {
"description": "SQL Server connection string (uses default if not provided)",
"type": "string"
},
"includeSystemViews": {
"description": "Include system views (default: false)",
"type": "boolean"
},
"schema": {
"description": "Schema name (default: dbo)",
"type": "string"
}
},
"type": "object"
}