Alter table auto

发布时间:2024-12-06 03:31

在InDesign中插入并精确对齐表格,需选中单元格,然后拖动到页面边缘:'Table' > 'Insert Table' #生活技巧# #数码产品使用技巧# #设计软件使用技巧#

最新推荐文章于 2024-09-05 14:09:11 发布

sunashe 于 2018-09-10 20:43:27 发布

简介

在使用MySQL提供的表空间传输功能时,无意中发现,在执行alter table test discard tablespace;之后,执行alter table test auto_increment =语句会引起数据库意外宕机。官方暂时还未修复此bug。

bug地址https://bugs.mysql.com/bug.php?id=88115
影响范围:mysql-5.7.*;mysql-5.6.37

复现方式

mysql> select @@version; +------------------+ | @@version | +------------------+ | 5.7.20-debug-log | +------------------+ 1 row in set (0.01 sec) create table test(id int not null auto_increment primary key); insert into test select 1; insert into test select 2; alter table test discard tablespace; alter table test auto_increment =10;123456789101112

网址:Alter table auto https://www.yuejiaxmz.com/news/view/391017

相关内容

Oracle SYSAUX空间问题解决
基于微信小程序的社区旧衣物回收系统设计与实现
mysql视图知识点(补充ALGORITHM = MERGE/TEMPTABLE/UNDEFINED)
数据库 = MySQL 索引以及原理
MySQL 快速删除大量数据(千万级别)的几种实践方案——附源码
数据化人生(一)——使用Mysql管理自己的生活数据
基于微信小程序的智慧生活助手系统设计与实现(源码+lw+部署+讲解)
揭秘MySQL软删慢之谜:性能优化与实战技巧深度剖析
PyMySQL的使用:事务、索引、如何防止SQL注入
springboot基于微信小程序的健康生活助手小程序(源码+vue+uinapp+部署文档等)

随便看看