码迷,mamicode.com
首页 >  
搜索关键字:variables    ( 2229个结果
解决问题:mysql 1040 too many connections
1.mysql -u root -p 回车输入密码进入mysql 2. 执行show variables like "max_connections"; 3.执行set GLOBAL max_connections=1000; 4.执行show variables like "max_connect ...
分类:数据库   时间:2021-01-08 11:38:08    阅读次数:0
rust FnMut 闭包
fn consume_with_relish<F>(mut func: F) where F: FnMut() -> String { // `func` consumes its captured variables, so it cannot be run more // than once p ...
分类:其他好文   时间:2021-01-02 11:07:10    阅读次数:0
Mysql常规维护操作
一、数据库状态查询 1.1、查看进程详情 show processlist; show full processlist; 1.2、数据库连接数 当前连接数 show status like '%threads_%'; 最大连接数 show variables like '%max_connecti ...
分类:数据库   时间:2021-01-01 12:06:29    阅读次数:0
C语言中的 @ 符号是什么意思?
Global Variable Address Modifier (@address) You can assign global variables to specific addresses with the global variable address modifier. These var ...
分类:编程语言   时间:2020-12-24 11:33:33    阅读次数:0
4.mysql profile的使用方法
profile的使用 1、作用 使用profile可以对某一条sql性能进行分析 2、语法 mysql> show variables like '%profil%'; + + + | Variable_name | Value | + + + | have_profiling | YES | | ...
分类:数据库   时间:2020-12-23 11:52:30    阅读次数:0
MySQL查看和修改字符集的方法
参考链接:https://www.cnblogs.com/yangmingxianshen/p/7999428.html Django中,数据库的字符集最好为utf-8. 一、查看字符集 1.查看MYSQL数据库服务器和数据库字符集 方法一:show variables like '%charact ...
分类:数据库   时间:2020-12-17 13:12:30    阅读次数:6
一个问题:CDS view在HANA studio里执行,显示的耗时比在ABAP open SQL里少
Sent: Samstag, 8. Juli 2017 11:03 Subject: RE: have a quick discussion about why the CDS view has a bad performance displayed in ST05 or SAT but the t ...
分类:数据库   时间:2020-12-10 10:45:30    阅读次数:4
canal的使用
mysql开启binlog模式 查看mysql是否开启binlog模式 SHOW VARIABLES LIKE ‘%log_bin%‘ </DI< div> 修改/etc/my.cnf 需要开启binlog模式 [mysqld] log-bin=mysql-bin binlog-format=ROW ...
分类:其他好文   时间:2020-12-09 11:33:40    阅读次数:4
FreeSwitch Hangup-Cause电话挂断原因速查
Freeswitch官网太慢了,经常还打不开,把电话挂断原因大全复制一份到这里,方便日常查看 ITU-T Q.850 Code SIP Equiv. Enumeration Cause Description ITU-T Q.850 Code SIP Equiv. Enumeration Cause ...
分类:其他好文   时间:2020-11-23 12:49:07    阅读次数:53
【开发运维手牵手】「Linux篇」awk命令用法
Linuxawk命令AWK是一种处理文本文件的语言,是一个强大的文本分析工具。之所以叫AWK是因为其取了三位创始人AlfredAho,PeterWeinberger,和BrianKernighan的FamilyName的首字符。语法awk[选项参数]‘script‘var=valuefile(s)或awk[选项参数]-fscriptfilevar=valuefile(s)选项参数说明:-Ffsor
分类:系统相关   时间:2020-11-17 12:00:40    阅读次数:18
2229条   上一页 1 ... 3 4 5 6 7 ... 223 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!