I have created a stored procedure in MySQL named: inventory_procedure(fromDateTime)
A third party system executes this stored procedure at regular 1 hour interval by passing fromDateTime in dd-mm-yyyy hh:mm:ss format.
Sometimes, third party systems reports that stored procedure didn't returned any data.
When I hit the stored procedure it returns results for me.
is there any way where I can fetch information like:
- When stored procedure was executed?
- What was the fromDateTime passed in storedProcedure?
- How many rows stored procedure returned?