Community journal

The latest from the MySQL community

Ideas, releases, practical guides, and perspectives from the people building with MySQL.

Follow the feed
Showing entries 2231 to 2240 of 15691 « Previous | Next »
第 30 章 Miscellaneous

目录 30.1. Multi-Master Replication Manager for MySQL 30.2. MHA 30.3. HandlerSocket 30.4. Maatkit 30.5. Mroonga 30.6. Amoeba

30.1. Multi-Master Replication Manager for MySQL

原文出处:Netkiller 系列 手札 本文作者:陈景峯 转载请与作者联系,同时请务必标明文章原始出处和作者信息及本声明。

【mysql】  【replication】   点击查看原文>

29.4. Maatkit Essential command-line utilities for MySQL

http://www.maatkit.org/

原文出处:Netkiller 系列 手札 本文作者:陈景峯 转载请与作者联系,同时请务必标明文章原始出处和作者信息及本声明。

【mysql】   点击查看原文>

第 28 章 MySQL Connectors

目录 28.1. JDBC 28.2. ODBC 28.3. MySQL native driver for PHP - mysqlnd 28.4. python-mysqldb

28.1.

【php】  【native】  【mysql】  【JDBC】  【url】  【xml】  【Driver】  【odbc】   …

[获取更多]
第 27 章 Optimization

目录 27.1. 打开表的数量 27.2. Buffering and Caching 27.2.1. Query Cache SELECT Options 27.3. where 优化 27.4.

【mysql】  【性能】  【SQL】  【Cache】  【open】   点击查看原文>

27.2. Buffering and Caching

查看缓存是否开启 MySQL> select @@query_cache_type; MySQL> show variables like 'query_cache_type'; 开启与关闭缓存 MySQL> set query_cache_type=on; MySQL> ...

【mysql】  【Cache】  【variables】   点击查看原文>

第 26 章 DCL (Data Control Language)

目录 26.1. 锁 26.1.1. 共享锁 26.1.2. 排他锁 26.1.3. 锁 26.1.3.1. 表的加锁与解锁 26.1.3.2. 禁止查询

26.1.4. 锁等待与超时 26.1.

【mysql】  【lock】  【Transaction】  【test】  【update】  【read】   点击查看原文>

26.2. 事务处理和锁定语句

Transactional and Locking Statements

开始事务 begin、start transaction 或者 set autocommit=0 事务的特征:原子性(Atomiocity)、一致性(Consistency)、隔离性(Isolation)和持久性(Durability),这四个特性简称ACID特性。

【mysql】  【innodb】  【数据库】  【电商】  【Transaction】  【test】  【update】   …

[获取更多]
25.6. 数值函数

25.6.1. cast 类型转换

mysql> SELECT cast(SUBSTRING('123456789',1,4) as UNSIGNED) * 100; +-------------------------------------------------...

【mysql】  【函数】   点击查看原文>

25.7. Control Flow Functions

CASE mysql> SELECT CASE 1 WHEN 1 THEN 'one' -> WHEN 2 THEN 'two' ELSE 'more' END; -> 'one' mysql> SELECT CASE WHEN 1>0 THEN 'true'...

【mysql】  【test】   点击查看原文>

MySQL Replication 主从复制全方位解决方案

1.1 主从复制基础概念     在了解主从复制之前必须要了解的就是数据库的二进制日志(binlog),主从复制架构大多基于二进制日志进行,二进制日志相关信息参考:http://www.cnblogs.

【架构】  【服务器】  【mysql】  【日志】  【线程】  【高可用】  【数据库】   …

[获取更多]