Home Database Mysql Tutorial MySQL常用技巧都包括哪些?

MySQL常用技巧都包括哪些?

Jun 07, 2016 pm 04:14 PM
mysql main introduce Which Commonly used Skill article

以下的文章主要介绍的是MySQL常用技巧,我们主要是讲述七个实际应用技巧,如果你对这七个MySQL常用技巧感兴趣的话,你就可以浏览以下的文章了,望会给你带来一些帮助在此学习方面。 1)MySQL常用技巧之一,用户权限管理最好是细分到DB级 或 Table级,不要轻

以下的文章主要介绍的是MySQL常用技巧,我们主要是讲述七个实际应用技巧,如果你对这七个MySQL常用技巧感兴趣的话,你就可以浏览以下的文章了,望会给你带来一些帮助在此学习方面。

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

2)MySQL常用技巧之二,用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>
Copy after login

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

3)MySQL常用技巧之三,查看服务器运行状况的几个重要命令;

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常用技巧之五,表优化(碎片整理)

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

MySQL> optimize table table_name;

来达到碎片整理的目的;

6)MySQL常用技巧之六,使用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的内容可以通过以下命令来查看:

<ol class="dp-xml"><li class="alt">MySQL<span>binlog [options] log-files </span>
</li></ol>
Copy after login

附录 权限名称与描述列表

<ol class="dp-xml">
<li class="alt"><span><span>Privilege  </span></span></li>
<li><span>Meaning  </span></li>
<li class="alt"><span>ALL [PRIVILEGES]  </span></li>
<li><span>Sets all simple privileges except GRANT OPTION  </span></li>
<li class="alt"><span>ALTER  </span></li>
<li><span>Allows use of ALTER TABLE  </span></li>
<li class="alt"><span>CREATE  </span></li>
<li><span>Allows use of CREATE TABLE  </span></li>
<li class="alt"><span>CREATE TEMPORARY TABLES  </span></li>
<li><span>Allows use of CREATE TEMPORARY TABLE  </span></li>
<li class="alt"><span>DELETE  </span></li>
<li><span>Allows use of DELETE  </span></li>
<li class="alt"><span>DROP  </span></li>
<li><span>Allows use of DROP TABLE  </span></li>
<li class="alt"><span>EXECUTE  </span></li>
<li><span>Not implemented  </span></li>
<li class="alt"><span>FILE  </span></li>
<li><span>Allows use of SELECT … INTO OUTFILE and LOAD DATA INFILE  </span></li>
<li class="alt"><span>INDEX  </span></li>
<li><span>Allows use of CREATE INDEX and DROP INDEX  </span></li>
<li class="alt"><span>INSERT  </span></li>
<li><span>Allows use of INSERT  </span></li>
<li class="alt"><span>LOCK TABLES  </span></li>
<li><span>Allows use of LOCK TABLES on tables for which you have the SELECT privilege  </span></li>
<li class="alt"><span>PROCESS  </span></li>
<li><span>Allows use of SHOW FULL PROCESSLIST  </span></li>
<li class="alt"><span>REFERENCES  </span></li>
<li><span>Not implemented  </span></li>
<li class="alt"><span>RELOAD  </span></li>
<li><span>Allows use of FLUSH  </span></li>
<li class="alt"><span>REPLICATION CLIENT  </span></li>
<li><span>Allows the user to ask where slave or master servers are  </span></li>
<li class="alt"><span>REPLICATION SLAVE  </span></li>
<li><span>Needed for replication slaves (to read binary log events from the master)  </span></li>
<li class="alt"><span>SELECT  </span></li>
<li><span>Allows use of SELECT  </span></li>
<li class="alt"><span>SHOW DATABASES  </span></li>
<li><span>SHOW DATABASES shows all databases  </span></li>
<li class="alt"><span>SHUTDOWN  </span></li>
<li>
<span>Allows use of </span>MySQL<span>admin shutdown  </span>
</li>
<li class="alt"><span>SUPER  </span></li>
<li><span>Allows use of CHANGE MASTER, KILL, PURGE MASTER LOGS, and SET GLOBAL statements, </span></li>
<li>
<span>the </span>MySQL<span>admin debug command; allows you to connect (once) even if max_connections is reached  </span>
</li>
<li class="alt"><span>UPDATE  </span></li>
<li><span>Allows use of UPDATE  </span></li>
<li class="alt"><span>USAGE  </span></li>
<li><span>Synonym for “no privileges”  </span></li>
<li class="alt"><span>GRANT OPTION  </span></li>
<li><span>Allows privileges to be granted  </span></li>
</ol>
Copy after login

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


Statement of this Website
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

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

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to optimize MySQL query performance in PHP? How to optimize MySQL query performance in PHP? Jun 03, 2024 pm 08:11 PM

MySQL query performance can be optimized by building indexes that reduce lookup time from linear complexity to logarithmic complexity. Use PreparedStatements to prevent SQL injection and improve query performance. Limit query results and reduce the amount of data processed by the server. Optimize join queries, including using appropriate join types, creating indexes, and considering using subqueries. Analyze queries to identify bottlenecks; use caching to reduce database load; optimize PHP code to minimize overhead.

How to use MySQL backup and restore in PHP? How to use MySQL backup and restore in PHP? Jun 03, 2024 pm 12:19 PM

Backing up and restoring a MySQL database in PHP can be achieved by following these steps: Back up the database: Use the mysqldump command to dump the database into a SQL file. Restore database: Use the mysql command to restore the database from SQL files.

How to insert data into a MySQL table using PHP? How to insert data into a MySQL table using PHP? Jun 02, 2024 pm 02:26 PM

How to insert data into MySQL table? Connect to the database: Use mysqli to establish a connection to the database. Prepare the SQL query: Write an INSERT statement to specify the columns and values ​​to be inserted. Execute query: Use the query() method to execute the insertion query. If successful, a confirmation message will be output.

How to use MySQL stored procedures in PHP? How to use MySQL stored procedures in PHP? Jun 02, 2024 pm 02:13 PM

To use MySQL stored procedures in PHP: Use PDO or the MySQLi extension to connect to a MySQL database. Prepare the statement to call the stored procedure. Execute the stored procedure. Process the result set (if the stored procedure returns results). Close the database connection.

How to fix mysql_native_password not loaded errors on MySQL 8.4 How to fix mysql_native_password not loaded errors on MySQL 8.4 Dec 09, 2024 am 11:42 AM

One of the major changes introduced in MySQL 8.4 (the latest LTS release as of 2024) is that the &quot;MySQL Native Password&quot; plugin is no longer enabled by default. Further, MySQL 9.0 removes this plugin completely. This change affects PHP and other app

How to create a MySQL table using PHP? How to create a MySQL table using PHP? Jun 04, 2024 pm 01:57 PM

Creating a MySQL table using PHP requires the following steps: Connect to the database. Create the database if it does not exist. Select a database. Create table. Execute the query. Close the connection.

Detailed introduction of Samsung S24ai functions Detailed introduction of Samsung S24ai functions Jun 24, 2024 am 11:18 AM

2024 is the first year of AI mobile phones. More and more mobile phones integrate multiple AI functions. Empowered by AI smart technology, our mobile phones can be used more efficiently and conveniently. Recently, the Galaxy S24 series released at the beginning of the year has once again improved its generative AI experience. Let’s take a look at the detailed function introduction below. 1. Generative AI deeply empowers Samsung Galaxy S24 series, which is empowered by Galaxy AI and brings many intelligent applications. These functions are deeply integrated with Samsung One UI6.1, allowing users to have a convenient intelligent experience at any time, significantly improving the performance of mobile phones. Efficiency and convenience of use. The instant search function pioneered by the Galaxy S24 series is one of the highlights. Users only need to press and hold

The difference between oracle database and mysql The difference between oracle database and mysql May 10, 2024 am 01:54 AM

Oracle database and MySQL are both databases based on the relational model, but Oracle is superior in terms of compatibility, scalability, data types and security; while MySQL focuses on speed and flexibility and is more suitable for small to medium-sized data sets. . ① Oracle provides a wide range of data types, ② provides advanced security features, ③ is suitable for enterprise-level applications; ① MySQL supports NoSQL data types, ② has fewer security measures, and ③ is suitable for small to medium-sized applications.

See all articles