MySQL Error number: 3091; Symbol: ER_CANNOT_LOG_PARTIAL_DROP_DATABASE_WITH_GTID; SQLSTATE: HY000 报错
文档解释
Error number: 3091; Symbol: ER_CANNOT_LOG_PARTIAL_DROP_DATABASE_WITH_GTID; SQLSTATE: HY000
Message: DROP DATABASE failed; some tables may have been dropped but the database directory remains. The GTID has not been added to GTID_EXECUTED and the statement was not written to the binary log. Fix this as follows: (1) remove all files from the database directory %s; (2) SET GTID_NEXT=’%s’; (3) DROP DATABASE `%s`.
Error Number 3091: ER_CANNOT_LOG_PARTIAL_DROP_DATABASE_WITH_GTID
Error Description:
MySQL Error Number 3091 occurs when a user attempts to log a partial drop of a database with Global Transaction Identifier (GTID) mode enabled. This is an illegal operation within the GTID mode.
Common Cases:
A common case in which Error 3091 occurs is when a database administrator wishes to log a partial drop of a database, i.e., only dropping some of the database tables, but still wishes to keep a log of the operation to track database changes. This is especially useful for database auditing, ensuring database security, and database version control. However, the GTID mode prevents these operations from being logged.
Solution:
The solution to Error 3091 is to either disable the GTID mode or else choose a database operation that can be logged properly. If a partial database drop must occur and be logged, then the GTID mode must be disabled. This can be done through the SET GTID_MODE = OFF query, which can be found in the official MySQL website. Otherwise, the database administrator may choose to log the operation without a partial database drop. This means that the entire database will be dropped and logged, instead of only a portion of it.
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341