Access denied; you need (at least one of) the SUPER privilege(s) for this operation
The problem is you set definer as root, which is not your current running user, that’s why you need to SUPER privilege. When import the SQL file from localhost to remote server. CREATE ALGORITHM=UNDEFINED DEFINER=CURRENT_USER SQL SECURITY INVOKER
Read More