MySQL升级的实质是对数据字典的升级,数据字典有:mysql、information_schema、performance_schema、sys schema。 一、MySQL升级的两种方式: 1、in place upgrade(适合小版本的升级) 即:关闭当前的MySQL,替换当前的二进制文件 ...
分类:
数据库 时间:
2019-11-07 11:32:28
阅读次数:
130
MySQL是一种使用很广的数据库,大部分网站都是用MySQL,所以熟悉对MySQL数据库的注入很重要。 首先来说下MySQL注入的相关知识点 在MySQL5.0版本之后,MySQL默认在数据库存放一个“information_schema”的数据库,在这个库中, SCHEMATA,TABLES和CO ...
分类:
数据库 时间:
2019-11-06 13:23:57
阅读次数:
113
mysql 5.6升级到mysql5.7查看参数报错 --从mysql5.7.6开始information_schema.global_status已经开始被舍弃,为了兼容性,此时需要打开 show_compatibility_56 解决办法 ...
分类:
其他好文 时间:
2019-11-03 12:36:36
阅读次数:
89
/**GET,post*有返回**/ 基于报错的SQL注入1、获取字段数 ' order by 5 --+2、获取表名 0' union select 1,group_concat(table_name),3 from information_schema.tables where table_sc ...
分类:
数据库 时间:
2019-11-03 01:29:06
阅读次数:
140
在项目中遇到以下错误 Lock wait timeout exceeded; try restarting transaction是锁等待超时。是当前事务在等待其它事务释放锁资源造成的。 解决方法: 在mysql查询中执行以下指令select * from information_schema.in ...
分类:
数据库 时间:
2019-10-24 11:36:34
阅读次数:
73
查看所有表的字符集 SELECT table_name, table_type, engine, version, table_collation FROM information_schema.tables WHERE table_schema = 'test_db11' ORDER BY tab ...
分类:
数据库 时间:
2019-10-23 18:18:23
阅读次数:
106
最近要查询一些数据库的基本情况,由于以前用oracle数据库比较多,现在换了MySQL数据库,就整理了一部分语句记录下来。 1、查询数据库表数量 2、查询数据库字段 3、查询数据库中持久化的数据量 MySQL中有一个名为 information_schema 的数据库,在该库中有一个 TABLES ...
分类:
数据库 时间:
2019-10-22 11:14:02
阅读次数:
457
首先我们需要了解`information_schema`这个库: `information_schema`这张表中保存着关于MySQL服务器所维护的所有其他数据库的信息。如数据库名,数据库的表,表栏的数据类型与访问权 限等。在INFORMATION_SCHEMA中,有数个只读表。它们实际上是视图,而 ...
分类:
数据库 时间:
2019-10-22 10:59:13
阅读次数:
91
ubuntu16.04开机启动mysql: 1、执行sysv-rc-conf --level 2345 mysql on,如果提示没有sysv-rc-conf命令,先下载 下载命令:sudo apt-get install sysv-rc-conf 2、查看服务列表sysv-rc-conf --li ...
分类:
数据库 时间:
2019-10-21 11:13:57
阅读次数:
143
select * from information_schema.processlist show full processlist # 获得select user,substring_index(host,':',1) as ip,count(1) as total from informatio... ...
分类:
其他好文 时间:
2019-10-15 22:37:47
阅读次数:
63