Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道是否可以阻止 mysqldump 插入此命令
/*!50017 DEFINER=`root`@`localhost`*/
或者,如果我必须在之后使用 sed 执行此操作,例如
谢谢!
这个问题自 2006 年以来一直存在,没有得到修复的迹象。
但是,在编写转储文件之前,我已经通过 grep(仅限 Linux)将其通过管道删除了定义行:
mysqldump -u dbuser -p dbname | grep -v 'SQL SECURITY DEFINER' > dump.sql
有点拗口(或键盘?),但我认为这是唯一的方法。