list_functions
Retrieve all user-defined functions (scalar, table-valued, etc.) from a Microsoft SQL Server database, filtered by schema or function type. Simplify database management.
Instructions
List all user-defined functions (scalar, table-valued, etc.)
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) | |
functionType | No | Filter by function type (default: ALL) | |
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"
},
"functionType": {
"description": "Filter by function type (default: ALL)",
"enum": [
"ALL",
"SCALAR",
"TABLE_VALUED",
"INLINE_TABLE_VALUED"
],
"type": "string"
},
"schema": {
"description": "Schema name (default: dbo)",
"type": "string"
}
},
"type": "object"
}