When you have innodb_file_per_table enabled, the tables are stored in their own tablespace but the shared tabl…
分类:MySql
Mysqldump参数大全
–all-databases , -A 导出全部数据库。mysqldump -uroot -p --all-databases–all-tablespaces , -Y 导出全部表空间。mysql…
MySQL Table is marked as crashed and should be repaired
0. Table './DB_name/table_name' is marked as crashed and should be repaired 1. 解决办法 $ mysqlcheck --repair --al…
Mac 安装mysql
一、MySQL安装 到MySQL官网上http://dev.mysql.com/download…,下载mysql可安装dmg版本比如:Mac OS X ver. 10.9 (x86, 64-bit), DM…
MYSQL 使用show profiles 分析性能
MYSQL 使用show profiles 分析性能 Show profiles是5.0.37之后添加的,要想使用此功能,要确保版本在5.0.37之后。如果要使用此功能,先查看mysql版本是否高于5.0.37 查看数据…
自定义mysqli_result() 替代 mysql_result()
<?php header("Content-Type:text/html;charset=utf-8"); include 'conn.php'; $sql = 'select count(*) as c from…
关于MySQL5.7.19 Access denied for user root@localhost
暑假没事买了一个云服务器玩,为了方便直接PHPstudy一键搭建环境,但是目前phpstudy自带数据库是5.5,而且还不是mysql-community-server版本,这我就很不爽了,于是就想安装目前最新的5.7.…
Hibernate入门指南
1.在使用Hibernate作为orm应用时推荐使用myeclipse作为开发工具2.导入相应的Hibernate的jar包到webroot文件下的lib目录下(webroot–>web-infR…
MysqL应该考虑到的安全策略
1:使用预处理语句防止SQL注入2:写入数据库的数据要进行特殊字符的转义,比如字符中带单引号和双引号需要在应用层转义,这样为了防止SQL注入3:查询的错误信息不要返回给用户,将错误记录到日志。错误信息不要显示到应用中,这…
mysql数据库管理命令
1.创建用户 CREATE USER 'username'@'host' IDENTIFIED BY 'password'; 说明: username:你将创建的用户名 host:指定该用户在哪个主机上可以登陆,如果是本…
Windows Server 2012 R2搭建 Apache+PHP+MYSQL环境
环境说明: 操作系统:Windows Server 2012 R2 PHP版本:php-5.6.35-Win32-VC11-x64下载地址:https://windows.php.net/downl…(注:V…
Mysql - JOIN详解
0 索引 JOIN语句的执行顺序 INNER/LEFT/RIGHT/FULL JOIN的区别 ON和WHERE的区别 1 概述 一个完整的SQL语句中会被拆分成多个子句,子句的执行过程中会产生虚拟表(vt),但是结果只返…