list_procedures
Retrieve stored procedures, functions, and packages from Oracle Database schemas to understand database structure and available operations.
Instructions
List all stored procedures, functions, and packages
Input Schema
Name | Required | Description | Default |
---|---|---|---|
owner | No | Filter by schema owner (optional) |
Input Schema (JSON Schema)
{
"properties": {
"owner": {
"default": null,
"description": "Filter by schema owner (optional)",
"type": "string"
}
},
"type": "object"
}