摘要: 查询数据库中的存储过程和函数 select `name` from mysql.proc where db = 'xx' and `type` = 'PROCEDURE' //存储过程 select `name` from mysql.proc where db = 'xx' and `type` 阅读全文
posted @ 2021-07-28 19:09 雪竹子 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 一、MySql官网文档解释在**mysql5.***中描述如下 Different limits related to tables and indexes. For example, the maximum number of ordered indexes in the cluster is d 阅读全文
posted @ 2021-07-28 10:29 雪竹子 阅读(657) 评论(0) 推荐(0) 编辑
摘要: ADATA Custer database manual or auto snapshot hangs and never returns: Bug info: https://support.oracle.com/CSP/ui/flash.html#tab=KBHome%28page=KBHome 阅读全文
posted @ 2021-07-28 09:58 雪竹子 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 创建表时报错,索引列超过最大约束ERROR 1709 (HY000): Index column size too large. The maximum column size is 767 bytes. 1. 错误原因由于 MySQL Innodb 引擎表索引字段长度的限制为 767 字节,因此对 阅读全文
posted @ 2021-07-28 09:49 雪竹子 阅读(244) 评论(0) 推荐(0) 编辑