首页
标签
分类
瞬间
友链
图库
归档
留言板
关于
服务推荐
微信Markdown编辑器
IT工具集
天明日常分享
累计撰写
94
篇文章
累计创建
35
个标签
累计收到
1
条评论
栏目
首页
标签
分类
瞬间
友链
图库
归档
留言板
关于
服务推荐
微信Markdown编辑器
IT工具集
目 录
CONTENT
以下是
SQL
相关的文章
mysql无密访问实现方式之mysql_config_editor
什么是mysql_config_editor mysql_config_editor是一个用于管理MySQL客户端配置文件的命令行工具。它允许用户以加密的方式存储和检索MySQL连接凭据(如用户名和密码),并将其与其他MySQL客户机程序共享。这个工具最大的优点是可以避免在配置文件中明文存储敏感信息
2023-11-08
41
0
0
SQL
常用SQL
数据库相关 Create Datebase CREATE DATABASE IF NOT EXISTS `new_db` DEFAULT CHARACTER SET utf8mb4; Create Table CREATE TABLE IF NOT EXISTS `new_table` (
2023-11-08
56
0
0
SQL
Postgresql常用命令
1、连接数据库, 默认的用户和数据库是 postgres psql -h host -p port -U user -d dbname 2、执行 sql 文件 psql -h ${PGHOST} -p ${PGPORT} -U ${PGUSER} -d safe_browser -f xxxx.s
2023-11-07
48
0
0
SQL
mysql常用配置
慢查询配置 [mysqld]下配置 # 开启慢查询日记 slow_query_log=1; # 慢查询日志文件位置 slow_query_log_file=/var/lib/mysql/slow_query.log # 慢查询时间(大于 3s 被视为慢查询) long_query_time=3;
2023-11-02
30
0
0
SQL
mysql问题定位
## 使用innodb_lock_monitor来获取阻塞锁线程 CREATE TABLE innodb_lock_monitor (a INT) ENGINE=INNODB; ## 查看最近2条死锁SQL show engine innodb status; ## 查看锁状态 show statu
2023-10-26
37
0
0
SQL
mysql主从配置
my.cnf配置 [mysqld] character-set-server=utf8mb4 thread_handling=pool-of-threads thread_pool_max_threads=1000 thread_pool_idle_timeout=900 max_connectio
2023-10-26
28
0
0
SQL
mysql备份工具mysqldump使用详解
示例 mysql_user=root mysql_pass="backup#mysql" mysql_host="127.0.0.1" mysql_port=3306 backup_db=db_mysql backup_file=backup_mysql.lz4 exclude_dbs="mysql
2023-10-26
36
0
0
SQL
常用sql函数
字符串截取 substring(str, pos) substring(str, pos, len) substring_index(str,delim,count) left() right() mid(), substr() 等价于 substring() 日期转字符串 CONVERT(time
2023-10-25
28
0
0
SQL