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.
我只想知道,当我创建我的 mysql 数据库的备份 (dump.sql) 时,它是否还会包含我创建的事件以及例如每天在我的数据库中执行更改的事件。事件将存储在数据库 information_schema 中,所以我不确定是否通过备份我的数据库我也保存事件......提前致谢。
它可以,但前提是您包含该--events选项。
--events
或者,在 MySQL 管理员中:
从命令行,使用 --noevents 标志运行 mysqldump 命令
mysqldump -u username -p --events dbname > anyfilename.sql