上一页 1 2 3 4 5 6 7 8 9 10 ··· 19 下一页
摘要: https://mirrors.aliyun.com/centos/7.9.2009/isos/x86_64/ 阅读全文
posted @ 2022-11-08 09:11 PrintY 阅读(7148) 评论(0) 推荐(0)
摘要: 1、准备工作 服务器:CentOS 7.9(2vCPU 4GiB)(安装好docker)- 阿里云服务器 三台服务器:rancher、master、node rancher服务器拉取rancher镜像 docker pull rancher/rancher:v2.5.7 2、安装rancher mk 阅读全文
posted @ 2022-09-28 16:45 PrintY 阅读(430) 评论(0) 推荐(0)
摘要: Explain简介 本文主要讲述如何通过 explain 命令获取 select 语句的执行计划,通过 explain 我们可以知道以下信息:表的读取顺序,数据读取操作的类型,哪些索引可以使用,哪些索引实际使用了,表之间的引用,每张表有多少行被优化器查询等信息。 下面是使用 explain 的例子: 阅读全文
posted @ 2022-09-18 10:36 PrintY 阅读(89) 评论(0) 推荐(0)
摘要: 当前版本:v 7.10.1 1、创建索引模式 2、查看数据 阅读全文
posted @ 2022-09-10 09:23 PrintY 阅读(245) 评论(0) 推荐(0)
摘要: Grafana版本v8.3.3 1、绑定数据源 2、创建table 3、导出数据 参考:https://chuna2.787528.xyz/cndarren/p/16009775.html 阅读全文
posted @ 2022-09-09 10:41 PrintY 阅读(224) 评论(0) 推荐(0)
摘要: @name:表名、reserved:存储、data:数据、index_size:索引、unused:空闲、 create table #Data12138(name varchar(100),row varchar(100),reserved varchar(100),data varchar(10 阅读全文
posted @ 2022-09-01 09:38 PrintY 阅读(67) 评论(0) 推荐(0)
摘要: [user] name=printy [email protected] 阅读全文
posted @ 2022-08-24 08:59 PrintY 阅读(57) 评论(0) 推荐(0)
摘要: 参考:https://blog.csdn.net/xiaoxionglove/article/details/113844839 阅读全文
posted @ 2022-08-22 21:12 PrintY 阅读(46) 评论(0) 推荐(0)
摘要: 1、新建文件夹“dbshare”并共享 2、新建发布 3、设置快照路径 4、新建订阅(在订阅服务器上操作) 5、采坑!!! 到这位置,基本就完事了,但是发现怎么TM也不好用。提示什么权限不足,不能访问xxx.pre文件,恶心。怎么整都不行 ,但是也有教程,说是修改sqlserver代理登录帐号,改成 阅读全文
posted @ 2022-08-22 20:50 PrintY 阅读(420) 评论(0) 推荐(0)
摘要: USE master; GO DECLARE @SQL VARCHAR(MAX); SET @SQL='' SELECT @SQL=@SQL+'; KILL '+RTRIM(SPID) FROM master..sysprocesses WHERE dbid=DB_ID('库名'); EXEC(@S 阅读全文
posted @ 2022-08-02 23:15 PrintY 阅读(2514) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 10 ··· 19 下一页