上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 133 下一页
摘要: 【1】递归构造连续日期 该值默认最多只允许递归1000次 可以通过:set session cte_max_recursion_depth=1000000000 来配置最大递归数 with recursive t1 as ( select 1 as id union all select id+1 阅读全文
posted @ 2020-12-30 18:11 郭大侠1 阅读(207) 评论(0) 推荐(0) 编辑
摘要: 查看表行数 系统表统计信息 :会有1~3%的不精准 use information_schema; select table_name,table_rows from tables where TABLE_SCHEMA = '数据库名' order by table_rows desc; 高效推荐 阅读全文
posted @ 2020-12-29 16:00 郭大侠1 阅读(1300) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2020-12-25 14:27 郭大侠1 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 脚本: #!/bin/bash mysqldump -h127.0.0.1 -uroot -p123456 test > 1.sql 报错: Unknown table 'COLUMN_STATISTICS' in information_schema (1109) 解决:添加参数 –column- 阅读全文
posted @ 2020-12-24 16:56 郭大侠1 阅读(2273) 评论(0) 推荐(0) 编辑
摘要: 【1】下载安装 sysbench GITHub: https://github.com/akopytov/sysbench 【1.1】yum安装 sysbench curl -s https://packagecloud.io/install/repositories/akopytov/sysben 阅读全文
posted @ 2020-12-16 11:23 郭大侠1 阅读(1110) 评论(0) 推荐(0) 编辑
摘要: usage(){ echo $1 echo '$#': $# action "error" /bin/false echo "usage: install_mysql.sh -F -f mysql-x-x.tar.xx -d /data/mysql -l /data/mysql_log -b /da 阅读全文
posted @ 2020-12-16 09:37 郭大侠1 阅读(239) 评论(0) 推荐(0) 编辑
摘要: 【1】第一步: 新建一个test.txt 文本文件,写入以下代码内容: Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\.md] @="Typora.md" "Content Type"="text/markdown" "Perceiv 阅读全文
posted @ 2020-12-15 17:45 郭大侠1 阅读(400) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2020-12-14 16:04 郭大侠1 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 【内存全概念参考】 SqlServer 内存篇(六)—— sqlserver 2012内存管理新特性 SqlServer 内存篇(五)—— 常见内存错误与解决方法 SqlServer 内存篇(四)—— 各部分内存不足特征及解决方法 SqlServer 内存篇(三)—— SqlServer内存使用状况 阅读全文
posted @ 2020-12-13 16:10 郭大侠1 阅读(808) 评论(0) 推荐(1) 编辑
摘要: 【1】错误信息 普通机器: 服务器: 计算机加入域后,使用常规用户无法登录; 【2】解决 【2.0】方案 1 如果你要远程登录的机器不是域控制器,只要把该用户加入到该机器的Remote Desktop Users组就可dao以了。2 如果zhuan你要远程登录的机shu器是域控制器,一般情况下,出于 阅读全文
posted @ 2020-12-11 16:36 郭大侠1 阅读(6594) 评论(1) 推荐(0) 编辑
上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 133 下一页