I'm throwing the below error when I'm trying to upload my db. I've tried in terminal and through phpmyadmin. I get the same error for both:
SQL query:
DELIMITER ; ;
/*!50003 CREATE*//*!50017 DEFINER=`root`@`localhost`*//*!50003 TRIGGER trg_catalog_category_entity_after_insert AFTER INSERT ON catalog_category_entity FOR EACH ROW BEGIN INSERT IGNORE INTO `enterprise_url_rewrite_category_cl` (`entity_id`) VALUES (NEW.`entity_id`); INSERT IGNORE INTO `catalog_category_product_cat_cl` (`category_id`) VALUES (NEW.`entity_id`); INSERT IGNORE INTO `catalog_category_flat_cl` (`entity_id`) VALUES (NEW.`entity_id`); END */ ; ;
MySQL said: Documentation
#1227 - Access denied; you need (at least one of) the SUPER privilege(s) for this operation
In terminal i don't have access to root because of the shared server situation.
I pulled this DB from another store and I'm setting it up on another server. If I can actually get past this error.
I've tried changing users and adding new users and updating privileges and grants but nothing seems to work.