Hi - I'm getting the following error while trying to run a stored procedure in MYSQL Workbench and also from within a Db mysql command line within python anywhere: ERROR 1142 (42000): INSERT command denied to user 'stevenpj'@'10.0.0.69' for table 'consultantsServices'
This works great on my localhost environment. I was also able to create and see the stored procedures from within mysql workbench just fine. But, I'm getting this error for all of my stored proc.
I'm just doing a simple call: CALL sp_insertConsultantServices
(@consultantServiceID,60, 195, 'Interview', 1);
Any idea what could be causing this?