代码改变世界

【SQLServer】表的索引碎片整理

2022-09-13 19:49 by abce, 1529 阅读, 0 推荐, 收藏, 编辑
摘要:1.查看索引的碎片率 SELECT object_name(ips.object_id) AS TableName, ips.index_id, name AS IndexName, avg_fragmentation_in_percent,db_name(ips.database_id) AS D 阅读全文

【SQLServer】max worker threads参数配置

2022-09-12 12:53 by abce, 470 阅读, 0 推荐, 收藏, 编辑
摘要:查看和设置max worker threads USE master; //选中你想设置max worker threads的数据库。master表示在实例级别进行设置 GO EXEC sp_configure 'show advanced option'//显示当前的高级选项设置 GO EXEC 阅读全文

【SQLServer】max worker threads参数说明

2022-09-11 10:22 by abce, 859 阅读, 1 推荐, 收藏, 编辑
摘要:本文介绍如何使用SQL Server Management Studio或Transact-SQL在SQL Server中配置最大工作线程服务器配置选项。 max worker threads选项配置SQL Server可用于处理查询请求、登录、注销和类似应用程序请求的工作线程数。 SQL Serv 阅读全文

【SQLServer】并行的保留线程和已使用线程

2022-09-10 22:50 by abce, 454 阅读, 1 推荐, 收藏, 编辑
摘要:我们都知道SQL Server的并行执行。为了快速处理一个请求,SQL Server会使用多个线程来处理一个请求。并行执行涉及两个重要的参数设置:·maxdop:最大并行度·并行度的成本阈值:如果任何估计的查询计划成本超过此值,则SQL Server优化器将尝试使用并行。 现在,回到我们的话题:保留 阅读全文

【MongoDB】日志报错not authorized on admin to execute command

2022-09-08 17:27 by abce, 2375 阅读, 0 推荐, 收藏, 编辑
摘要:安装mongodb exporter监控之后,mongodb的日志一直报错: {"t":{"$date":"2022-09-08T10:36:50.708+08:00"},"s":"I", "c":"ACCESS", "id":20736, "ctx":"conn32068","msg":"Chec 阅读全文

【MongoDB】Prometheus监控MongoDB

2022-09-06 13:42 by abce, 592 阅读, 0 推荐, 收藏, 编辑
摘要:这里只是写了如何安装mongodb_exporter。 其他部分参看:https://www.cnblogs.com/abclife/p/16659151.html 下载和安装 sudo wget https://github.com/percona/mongodb_exporter/release 阅读全文

【MySQL】Prometheus监控MySQL

2022-09-05 19:25 by abce, 583 阅读, 0 推荐, 收藏, 编辑
摘要:需要安装node_exporter+mysqld_exporter 1.下载 node_exporter wget https://github.com/prometheus/node_exporter/releases/download/v1.3.1/node_exporter-1.3.1.lin 阅读全文

【MySQL】Authentication plugin 'caching_sha2_password' reported error

2022-09-02 21:52 by abce, 1531 阅读, 1 推荐, 收藏, 编辑
摘要:使用MySQL8.0.30创建主从,启动从库的时候报错: Last_IO_Errno:2061 Last_IO_Error:error connecting to mater 'repl@xxxxx:3308' - retry-time:60 retries:1 massage:Authentica 阅读全文

【MySQL】MariaDB使用connect存储引擎访问SQLServer中的表

2022-08-31 11:04 by abce, 165 阅读, 0 推荐, 收藏, 编辑
摘要:借助connect存储引擎,Mariadb可以访问任何ODBC数据源。 本文是以CentOS7为例。安装的内容有:ODBC driver,unixODBC 1.下载ODBC对应linux的驱动下载地址: https://docs.microsoft.com/en-us/sql/connect/odb 阅读全文

【MySQL】DDL因Waiting for table metadata lock卡住

2022-08-30 08:22 by abce, 768 阅读, 0 推荐, 收藏, 编辑
摘要:在数据库空闲时间,对表做碎片整理: alter table my_abc engine=innodb; 发现会话被阻塞,显示状态是: Waiting for table metadata lock 手动断开alter操作后,通过show processlist查看:​ > show processl 阅读全文
上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 122 下一页