码迷,mamicode.com
首页 >  
搜索关键字:variables    ( 2229个结果
mysql innodb 文件
mysql --help | grep my.cnf 查看配置文件 参数文件 查看参数变量: 通过命令 show variables [like 'abc'\G]; 或者查看 information_schema下的global_variables视图 修改动态变量:分为会话范围和全局范围修改 se ...
分类:数据库   时间:2020-05-27 20:26:08    阅读次数:87
less基本知识
Less語法糖less是LeanerStyleSheets的缩写,擴展CSS一些特性。使我們在樣式加入可以加,減,乘,除等更加靈活。一、变量(Variables)@width:10px;聲明變量@height:@width+10px;.className{width:@width;height:@height;}通過less編譯之後為.className{width:10px;height:20p
分类:其他好文   时间:2020-05-27 10:34:35    阅读次数:87
mysql利用存储过程插入大量数据脚本
参考地址: https://blog.csdn.net/student__software/article/details/82048724 1.检查是否开启二进制日志 #查看是否开启二进制日志,ON表示开启,OFF表示没有开启 show variables like 'log_bin_trust_ ...
分类:数据库   时间:2020-05-27 01:04:40    阅读次数:141
解决:navicat出现Table ‘performance_schema.session_variables’ doesn’t exist报错,解决过程中出现mysql遇到的cannot select database 问题
问题描述: navicat连接本地MySQL时出现Table ‘performance_schema.session_variables’ doesn’t exist报错。网上的解决方法是在mysql的bin目录下运行 mysql_upgrade -u root -p --force命令,但是我在输 ...
分类:数据库   时间:2020-05-26 20:21:47    阅读次数:112
mysql的简单语句
1.查看路径 show variables like 'datadir'; 2.show databases; 3.create database course; 4.use course; 5.create table student(id type); 6.show full fields fr ...
分类:数据库   时间:2020-05-25 12:41:39    阅读次数:92
What is the difference between sed and awk
What is the difference between sed and awk sed is a stream editor. It works with streams of characters on a per-line basis. It has a primitive program ...
分类:其他好文   时间:2020-05-24 11:34:00    阅读次数:81
MySQL 数据库报错 Too many connections
错误是 超出最大连接数 排查方法:命令行进入MySQL连接,查询当前连接数 命令:show full processlist; 在连接数达到大量数值的时候,依次关闭相关服务,若某个服务触发连接数大量减少,说明该服务连接量大,或者使用完不释放 查看超时等待时间: 命令:show variables l ...
分类:数据库   时间:2020-05-23 16:14:27    阅读次数:60
创建mysql数据库时设置字符集
查看字符集 show variables like '%char%' 设置统一的utf8 vim /etc/my.cnf ...
分类:数据库   时间:2020-05-22 19:25:11    阅读次数:82
Mysql两个常见报错
1.Mysql提示报错Too large的错误。 解决: show variables like '%max_allowed_packet%';【默认为1M】 set global max_allowed_packet = 2*1024*1024*10 2.Mysql8.0的版本,因为比较新的mys ...
分类:数据库   时间:2020-05-20 14:35:33    阅读次数:66
查看一条mysql语句的性能
mysql数据库在5.0.37版本后添加了Show profiles功能,可以分析出一条sql语句的性能。 检查数据库是否支持Show profiles功能:show variables like "%version%"; 查看profiles是否开启:show variables like "%p ...
分类:数据库   时间:2020-05-20 12:28:08    阅读次数:66
2229条   上一页 1 ... 12 13 14 15 16 ... 223 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!