list_functions
Discover and retrieve all database functions (scalar and table-valued) with optional filtering by schema or function type for SQL Server database exploration.
Instructions
Lists all functions (scalar and table-valued) in the database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
functionType | No | Type of function to filter | |
schemaName | No | Schema name to filter functions |
Input Schema (JSON Schema)
{
"properties": {
"functionType": {
"description": "Type of function to filter",
"enum": [
"SCALAR",
"TABLE"
],
"type": "string"
},
"schemaName": {
"description": "Schema name to filter functions",
"type": "string"
}
},
"type": "object"
}