• Please be aware: Kaspersky Anti-Virus has been deprecated
    With the upgrade to Plesk Obsidian 18.0.64, "Kaspersky Anti-Virus for Servers" will be automatically removed from the servers it is installed on. We recommend that you migrate to Sophos Anti-Virus for Servers.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

Problem importing database

F

fotinis

Guest
Hello everyone, I am trying to import a database but I keep having the following error

Error
SQL query:

CREATE DEFINER = `root`@`localhost` PROCEDURE `l4zlm_TeraWurfl_FallBackDevices` ( current_fall_back VARCHAR( 64 ) ) BEGIN WHILE current_fall_back != 'root' DO SELECT capabilities
FROM l4zlm_TeraWurflMerge
WHERE deviceID = current_fall_back;

SELECT fall_back
FROM l4zlm_TeraWurflMerge
WHERE deviceID = current_fall_back
INTO current_fall_back;

END WHILE;

END$$

MySQL said:

#1227 - Access denied; you need the SUPER privilege for this operation



Any suggestions ?
Thank you!
 
Last edited by a moderator:
You can grant the permissions pretty easily

grant SUPER on *.* to 'user'@'localhost' identified by 'passwordHere';
Then flush privileges and you should be good to go.
 
Back
Top