Error
Error Code:
1106
MariaDB Error 1106: Unknown Stored Procedure Call
Description
This error indicates that MariaDB could not find a stored procedure with the name specified in your SQL statement. It typically occurs when attempting to execute a procedure that does not exist, is misspelled, or is located in a different database or schema than expected.
Error Message
Unknown procedure '%s'
Known Causes
3 known causesMisspelled Procedure Name
The name of the stored procedure in the `CALL` statement does not exactly match an existing procedure's name due to a typo or incorrect casing.
Procedure Not Defined
The stored procedure has not been created, deployed, or loaded into the MariaDB instance or the specific database being queried.
Incorrect Database Context
The procedure exists but resides in a different database or schema than the one currently active or explicitly specified in the `CALL` statement.
Solutions
Coming SoonGeneral Troubleshooting Tips
- Check the error message carefully for specific details
- Review recent changes that might have caused the error
- Search for the exact error code in the official documentation
- Check log files for additional context
- Try restarting the application or service