码迷,mamicode.com
首页 >  
搜索关键字:variables    ( 2229个结果
显示最大连接数
show variables like '%max_connections%'; 查看最大连接数,默认是100多,服务端安装完最好修改 ...
分类:其他好文   时间:2020-01-31 10:33:40    阅读次数:57
Keras高层API之Metrics
在tf.keras中,metrics其实就是起到了一个测量表的作用,即测量损失或者模型精度的变化。metrics的使用分为以下四步: step1:Build a meter acc_meter = metrics.Accuracy() loss_meter = metrics.Mean() step ...
分类:Windows程序   时间:2020-01-30 23:21:12    阅读次数:141
MySQL-死锁查询
1、查询是否锁表 show OPEN TABLES where In_use > 0; 查询到相对应的进程 然后 kill id 2、查询进程 show processlist 补充: 查看正在锁的事务 SELECT * FROM INFORMATION_SCHEMA.INNODB_LOCKS; 查 ...
分类:数据库   时间:2020-01-30 22:43:02    阅读次数:111
修改MySQL时区
查看数据库时区 mysql> show variables like '%time_zone%'; + + + | Variable_name | Value | + + + | system_time_zone | CST | | time_zone | CST -07:00| + + + 2 r ...
分类:数据库   时间:2020-01-30 14:38:59    阅读次数:99
RestTemplate的异常 Not enough variables available to expand
当使用 RestTemplate 可能会遇到异常: 典型如下: 这样使用,会出现如下报错信息: 这个地方很令人费解,难道不能这样使用?经过一顿查找,发现原来是因为。。。 url因为本身的原因,把花括号 { } 中的内容当成了占位符,而这里又没有明确说明占位符对应的值,所以会导致报错。 只需要简单几步 ...
分类:其他好文   时间:2020-01-29 21:24:42    阅读次数:79
C/C++, static
0. General speaking static is a keyword in C++, and it can be used in variables, functions, and members of a class. 1. static members of a class stati ...
分类:编程语言   时间:2020-01-27 09:20:06    阅读次数:64
MySQL8.0新特性【转】
Server层,选项持久化 mysql> show variables like '%max_connections%'; + + + | Variable_name | Value | + + + | max_connections | 512 | | mysqlx_max_connections ...
分类:数据库   时间:2020-01-26 11:50:42    阅读次数:115
如何调优SQL
以MySQL为例 如何定位并优化慢查询Sql? 联合索引的最左匹配原则的成因? 索引是建立得越多越好吗? 一、如何定位并优化慢查询Sql? 根据慢日志定位慢查询sql 使用explain等工具分析sql 修改sql或者尽量让sql走索引 查看mysql变量 SHOW VARIABLES LIKE ' ...
分类:数据库   时间:2020-01-25 20:43:38    阅读次数:106
sqli lab less7
Less7 1.文件读写权限问题 show variables like '%secure%';查看 secure-file-priv 当前的值,如果显示为NULL,则需要打开 C:\phpstudy\PHPTutorial\MySQL\my.ini文件,在其中加上一句:secure_file_pr ...
分类:数据库   时间:2020-01-22 16:39:20    阅读次数:117
MySQL基本操作
启动/关闭 登入/退出 mysql hlocalhost p3306 uroot p[密码] //密码可选 可以简写为:mysql uroot p //本机 exit //退出 或 ctrl+c 或 quit mysql服务器架构 1. DBMS(数据库管理系统)管理服务器端的内容。 2. DB(数 ...
分类:数据库   时间:2020-01-22 13:15:45    阅读次数:107
2229条   上一页 1 ... 22 23 24 25 26 ... 223 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!