Bonjour
Voila je souhaite importer ma base de donnée que j'avais auparavant exporter.
C'est un fichier sql.
Lorsque que dans phpmyadmin je fais importer il m'affiche cette erreur:
Erreur

requête SQL: Documentation

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
CREATE ALGORITHM = UNDEFINED DEFINER = `root`@`localhost` SQL SECURITY DEFINER VIEW `archives` AS SELECT `article`.`NUMART` AS `numart` , `article`.`TITREART` AS `titreart` , `rubrique`.`LIBRUBRIQUE` AS `librubrique` , `article`.`NUMRUBRIQUE` AS `numrubrique`
FROM (
`article`
JOIN `rubrique`
)
WHERE (
`rubrique`.`NUMRUBRIQUE` = `article`.`NUMRUBRIQUE`
)
ORDER BY `article`.`DATEART` DESC
LIMIT 10 , 30;
MySQL a réponduocumentation
#1227 - Access denied; you need the SUPER privilege for this operation

Comment changer les droits d'administrateur dans phpmyadmin?
Je suis bloqué