The MySQL server provided by RDS does not allow a DEFINER syntax for another user. Solution
sed -E ‘s/DEFINER=`[^`]+`@`[^`]+`/DEFINER=username/g’ store.sql > storefix.sqlWas this worth your time?
The MySQL server provided by RDS does not allow a DEFINER syntax for another user. Solution sed -E ‘s/DEFINER=[^]+@[^]+/DEFINER=username/g’ store.sql > storefix.sql 📚 Related Articles → How to Install LXD Container…
The MySQL server provided by RDS does not allow a DEFINER syntax for another user. Solution
sed -E ‘s/DEFINER=`[^`]+`@`[^`]+`/DEFINER=username/g’ store.sql > storefix.sqlWas this worth your time?