Hi!
I was uploading a sql file and got this back.
Access denied; you need (at least one of) the SUPER privilege(s) for this operation
How do I set the super privilege to upload the file?
Thanks!!!!
How do I set SUPER privilege for a user? phpmyadmin error "1044 - Access denied for user"
- myVesta
- Site Admin
- Posts: 946
- Joined: Fri Jun 19, 2020 9:59 am
- Has thanked: 9 times
- Been thanked: 6 times
I think your SQL dump file contains
which is of course unacceptable.
Edit your SQL file, delete
and also delete
statements.
Your SQL file maybe also contains dump od 'mysql' database (at the end or at the top of file), you should also delete it from your SQL dump file.
Code: Select all
CREATE DATABASE ...
Edit your SQL file, delete
Code: Select all
CREATE DATABASE ...
Code: Select all
USE ...
Your SQL file maybe also contains dump od 'mysql' database (at the end or at the top of file), you should also delete it from your SQL dump file.