1024
-
Oracle扩展表空间
查看表空间使用情况 –表空间巡查(按GB)select a.tablespace_name as “表空间名”,”最大空…
-
【MySQL】MySQL估算redo日志的容量
在MySQL8.0.30之前 mysql> pager grep sequence PAGER set to ‘grep sequence’ mysql> show e…
-
linux-0.11分析:init文件 main.c的第八个buffer_init(buffer_memory_end)初始化函数 第九篇随笔
8、第八个初始化函数,buffer_init(buffer_memory_end) 参考 [github这个博主的 厉害][ https://github.com/sunym199…
-
mysql下的max_allowed_packet参数设置
参考地址:https://blog.csdn.net/qq_34988304/article/details/92762504 MySQL根据配置文件会限制Server接受的数据包…
-
MySQL Lost connection to MySQL server during query
在 mysql 导入sql文件时报错该信息;有 sql 备份文件 大概 104G左右。再倒入时发现报错;最后排查结果修改信息如下: 解决办法 修改max_allowed_packe…
-
当mysql表从压缩表变成普通表会发生什么
前言 本文章做了把mysql表从压缩表过渡到普通表的实验过程,看看压缩表变成普通表会发生什么?本文针对mysql5.7和mysql8分别进行了实验。 1、什么是表压缩 在介绍压缩表…
-
keil5出现 Error: L6406E: No space in execution regions with .ANY selector matching queue.o(.bss). 的原因总
我在使用KEIL5做程序移植时,编译后出现了上面的报警,经过一顿搜索,终于解决了问题。特意来此记录。 首先,此次移植原程序是在stm32f103VET6这种大容量芯片移植到…
-
windows10/liunx创建空大文件
1.windows10创建空大文件打开cmd命令,进入需要创建文件的目录,使用以下命令创建 fsutil file createnew test001.txt 1073741824…
-
Mysql解决The total number of locks exceeds the lock table size错误
Mysql解决The total number of locks exceeds the lock table size错误 InnoDB表执行大批量数据的更新,插入,删除操作时会…
-
mysql 查看库表数量,库空间大小
select count(TABLE_NAME), concat(truncate(data_length/1024/1024,2),’ MB’) as data_size…