Magento 数据库导入错误


Magento Database Import Error

我想将我的本地magento数据库导入到实时数据库中,但是我在phpmyadmin上收到此错误:

Error
SQL query: Documentation
--
-- Database: `round_gain`
--
DELIMITER $$--
-- Procedures
--
CREATE DEFINER = `root`@`localhost` PROCEDURE `GetCart` ( IN deleteBefore datetime, IN storeId smallint ) BEGIN DELETE FROM mventory_cart_item WHERE date_time < deleteBefore;
SELECT *
FROM mventory_cart_item
WHERE store_id = storeId
ORDER BY date_time DESC ;
END$$
MySQL said: Documentation
#1227 - Access denied; you need (at least one of) the SUPER privilege(s) for this operation 

使用具有所有先前权限的用户登录phpmyadmin,然后导入数据库。 此错误似乎您没有使用所有先前的登录。