search
HomeDatabaseMysql TutorialMySQL常用技巧大汇总
MySQL常用技巧大汇总Jun 07, 2016 pm 04:14 PM
mysqlCommonly usedusSkillSummary

今天我们主要和大家一起分享的是MySQL常用技巧,愿在你学习MySQL常用技巧中以起到抛砖引玉的作用。如果你对其实际应用,心存好奇的话,以下的文章将会揭开它的神秘面纱。 1)MySQL常用技巧一用户权限管理最好是细分到DB级 或 Table级,不要轻易开通全局权限

今天我们主要和大家一起分享的是MySQL常用技巧,愿在你学习MySQL常用技巧中以起到抛砖引玉的作用。如果你对其实际应用,心存好奇的话,以下的文章将会揭开它的神秘面纱。

1)MySQL常用技巧一用户权限管理最好是细分到DB级 或 Table级,不要轻易开通全局权限;

2)用grant 和 revoke,进行用户授权和收权;

<ol class="dp-xml">
<li class="alt">MySQL<span><span class="tag">></span><span> grant select on db.* to user@host identified by ‘passwd’;  </span></span>
</li>
<li>MySQL<span class="tag">></span><span> revoke all on db.* from user@host;  </span>
</li>
<li class="alt">MySQL<span class="tag">></span><span> flush privileges; </span>
</li>
</ol>

注意:对用户权限作变更后需运行flush使变更生效;

3)查看服务器运行状况的几个重要命令;

show status; 显示系统的运行状态

show variables; 显示系统运行的参数设置与环境变量

show processlist; 显示现有的访问连接;

对master slave系统还有:show master/slave status;

4)MySQL常用技巧四设置最大的并发响应连接数、等待响应队列的最大等待连接数(上限与具体操作系统有关)、非活动连接超时时间

最大连接数

查看:MySQL> show variables like ‘max_connections’;

设置:MySQL> set global max_connections = 200;

默认为100,若设置为0,则表示不作限制;

瞬时并发等待连接数

查看:MySQL> show variables like ‘back_log’;

设置:MySQL> set global back_log = 200;

默认为50;

非活动连接超时时间

MySQL> set wait_timeout = 3600;

默认为28800,即8小时,单位秒;

5)表优化(碎片整理)

倘若一个数据量很大的表进行了大量的修改,那么可以通过命令

MySQL> optimize table table_name;

来达到碎片整理的目的;

6)使用MySQLhotcopy进行数据库文件热备份

/home/MySQL/bin/MySQLhotcopy db_name[./table_regex/] [new_db_name | direc tory]

示例:

/home/MySQL/bin/MySQLhotcopy -u root -p ‘xxxx’ test./^tt$/ ./

注意:MySQLhotcopy是一个perl程序,需要DBI和DBD perl模块的支持

7)MySQL常用技巧:错误日志与binlog

错误记录日志一般是在数据目录下,如:

var/.err

binlog可以记录数据库上发生的所有操作记录,通过my.cnf中的log-bin选项来开启,如果被注释就代表关闭,binlog的内容可以通过以下命令来查看:

MySQLbinlog [options] log-files

附录 权限名称与描述列表

Privilege

Meaning

ALL [PRIVILEGES]

Sets all simple privileges except GRANT OPTION

ALTER

Allows use of ALTER TABLE

CREATE

Allows use of CREATE TABLE

CREATE TEMPORARY TABLES

Allows use of CREATE TEMPORARY TABLE

DELETE

Allows use of DELETE

DROP

Allows use of DROP TABLE

EXECUTE

Not implemented

FILE

Allows use of SELECT … INTO OUTFILE and LOAD DATA INFILE

INDEX

Allows use of CREATE INDEX and DROP INDEX

INSERT

Allows use of INSERT

LOCK TABLES

Allows use of LOCK TABLES on tables for which you have the SELECT privilege

PROCESS

Allows use of SHOW FULL PROCESSLIST

REFERENCES

Not implemented

RELOAD

Allows use of FLUSH

REPLICATION CLIENT

Allows the user to ask where slave or master servers are

REPLICATION SLAVE

Needed for replication slaves (to read binary log events from the master)

SELECT

Allows use of SELECT

SHOW DATABASES

SHOW DATABASES shows all databases

SHUTDOWN

Allows use of MySQLadmin shutdown

SUPER

Allows use of CHANGE MASTER, KILL, PURGE MASTER LOGS, and SET GLOBAL statements, the MySQLadmin debug command; allows you to connect (once) even if max_connections is reached

UPDATE

Allows use of UPDATE

USAGE

Synonym for “no privileges”

GRANT OPTION

Allows privileges to be granted

以上的相关内容就是对MySQL常用技巧的介绍,望你能有所收获。 


Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
图文详解mysql架构原理图文详解mysql架构原理May 17, 2022 pm 05:54 PM

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于架构原理的相关内容,MySQL Server架构自顶向下大致可以分网络连接层、服务层、存储引擎层和系统文件层,下面一起来看一下,希望对大家有帮助。

mysql怎么去掉第一个字符mysql怎么去掉第一个字符May 19, 2022 am 10:21 AM

方法:1、利用right函数,语法为“update 表名 set 指定字段 = right(指定字段, length(指定字段)-1)...”;2、利用substring函数,语法为“select substring(指定字段,2)..”。

mysql的msi与zip版本有什么区别mysql的msi与zip版本有什么区别May 16, 2022 pm 04:33 PM

mysql的msi与zip版本的区别:1、zip包含的安装程序是一种主动安装,而msi包含的是被installer所用的安装文件以提交请求的方式安装;2、zip是一种数据压缩和文档存储的文件格式,msi是微软格式的安装包。

mysql怎么替换换行符mysql怎么替换换行符Apr 18, 2022 pm 03:14 PM

在mysql中,可以利用char()和REPLACE()函数来替换换行符;REPLACE()函数可以用新字符串替换列中的换行符,而换行符可使用“char(13)”来表示,语法为“replace(字段名,char(13),'新字符串') ”。

mysql怎么将varchar转换为int类型mysql怎么将varchar转换为int类型May 12, 2022 pm 04:51 PM

转换方法:1、利用cast函数,语法“select * from 表名 order by cast(字段名 as SIGNED)”;2、利用“select * from 表名 order by CONVERT(字段名,SIGNED)”语句。

MySQL复制技术之异步复制和半同步复制MySQL复制技术之异步复制和半同步复制Apr 25, 2022 pm 07:21 PM

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于MySQL复制技术的相关问题,包括了异步复制、半同步复制等等内容,下面一起来看一下,希望对大家有帮助。

带你把MySQL索引吃透了带你把MySQL索引吃透了Apr 22, 2022 am 11:48 AM

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了mysql高级篇的一些问题,包括了索引是什么、索引底层实现等等问题,下面一起来看一下,希望对大家有帮助。

mysql怎么判断是否是数字类型mysql怎么判断是否是数字类型May 16, 2022 am 10:09 AM

在mysql中,可以利用REGEXP运算符判断数据是否是数字类型,语法为“String REGEXP '[^0-9.]'”;该运算符是正则表达式的缩写,若数据字符中含有数字时,返回的结果是true,反之返回的结果是false。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use