51CTO博客开发
将博客搬至51CTO
MySQLimport位于MySQL/bin目录中,是MySQL的一个载入(或者说导入)数据的一个非常有效的命令行工具。 使用mysqlimport -?命令,可以查看mysqlimport的具体参数及详细说明。下表是一些常见的选项: -c, --columns=name Use only these columns t
[root@rhel5 ~]# fdisk -l Disk /dev/sda: 68.7 GB, 68719476736 bytes 255 heads, 63 sectors/track, 8354 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Device Bo
在MySQL的主从环境中,我们可以通过在slave上执行show slave status来查看slave的一些状态信息,其中有一个比较重要的参数Seconds_Behind_Master。那么你是否明白它的真正含义以及它是怎么计算的呢? 在之前我一直误以为Seconds_Behind_Master是表示slave比master落后
MyISAM引擎使用B+Tree作为索引结构,叶节点的data域存放的是数据记录的地址。下图是MyISAM索引的原理图: 这里设表一共有三列,假设我们以Col1为主键,则上图是一个MyISAM表的主索引(Primary key)示意。可以看出MyISAM的索引文件仅仅保存数据记录的地址。在MyISAM中,主索引和辅助索引(Secondary key)在结构上没有任何区别,
一、缘由:我的mysql中有两个文件(ib_logfile0、ib_logfile1),对于它们的作用等等,不甚了解。 二、内容: ib_logfile0、ib_logfile1是mysql中innodb下的的事务日志,因为myisam不支持事务,所以也就没有事务日志了。可以通过innodb_log_file_size=50M参数设置大小。
innobackup 部分备份恢复实验 三种方式: ## Using the --include option The command above will create a timestamped directory with the usual files that innobackupex creates, but only the data files relate
RHEL5 5升级python版本(2.4>2.7) 2011年12月07日
A.1全库备份. 命令: mysqlbackup --defaults-file=/home/mysql-server/mysql3/my.cnf --user=root --password=root --databases="mysql total2" --with-timestamp --backu
## 查看当前库中表的数据 (root@localhost) [test]>select count(*) from t_innodb; +----------+ | count(*) | +----------+ | 0 | +----------+ 1 row
插入缓冲是InnoDB存储引擎关键特性中最令人激动的。不过,这个名字可能会让人认为插入缓冲是缓冲池中的一个部分。其实不然,InnoDB缓冲池中有Insert Buffer信息固然不错,但是Insert Buffer和数据页一样,也是物理页的一个组成部分。 我们知道,主键是行唯一的标识符,在应用程序中行记录的插入顺序是按照主键递增的顺序进行插入的。因此,插入聚集索引一般是顺序的,不需要磁盘
void master_thread(){ goto loop; loop: for(int i = 0; i<10; i++){ thread_sleep(1) // sleep 1 second do log buffer flush to disk if ( last_one_second_ios < 5% innodb_i
yum -y install mysql-devel libcurl-devel net-snmp-devel groupadd zabbix useradd zabbix -g zabbix create database zabbix character set utf8; grant all privileges on zabbix.* to zabbix@localho
[mysql@promote 2014-06-12_11-28-29]$ innobackupex --help Options: --apply-log Prepare a backup in BACKUP-DIR by applying the transaction log file &
[root@promote tmp]# yum install cmake gcc gcc-c++ libaio libaio-devel automake autoconf bzr bison libtool ncurses-devel zlib-devel libgcrypt-devel [root@promote tmp]#wget http://www.p
[rhel-dvd-Server] name = Red Hat Enterprise Linux x86 - Server baseurl = file:///media/cdrom/Server enabled = 1 gpgche
在关闭时,参数innodb_fast_shutdown影响着表的存储引擎为InnoDB的行为。 该参数取值为0、1、2 0 代表党MySql关闭时,InnoDB需要完成所有的full purge 和 merge insert buffer操作,这会需要一些时间。1 代表不需要完成上述的full purge ,merge insert buffer操
在MySQL 5.1.22之前,innodb使用一个表锁解决自增字段的一致性问题(内部是用一个计数器维护,每次自增时要加表锁),如果一行一行的插入数据则没有什么问题,但是如果大量的并发插入就废了,表锁会引起SQL堵塞,不但影响效率,而且可能会瞬间达到max_connections而崩溃。 在 5.1.22之后,innodb使用新的方式解决自增字段一致性问题,对于可以预判行数的insert
两台虚拟机,系统为CentOS 5.4,分别有三块磁盘来做逻辑卷。 IP分配及磁盘情况: HA1 eth0:192.168.0.77 eth1:192.168.10.1 &nb
基于《MySQL学习分享--Thread pool》对Thread pool架构设计的详细了解,本文主要对Thread pool的实现进行分析,并根据Mariadb和Percona提供的开源实现,进行简单的比较和评估。 1、《The Thread Pool Plugin》 MySQL官方文档中,对Thread p
This section surveys techniques that enable you to use mysqldump to solve specific problems: How to make a copy a database How to copy a database from one server to another
下面附上mysqldump导出的常用参数及说明: 1. –compatible = name 它告诉 mysqldump,导出的数据将和哪种数据库或哪个旧版本的 MySQL 服务器相兼容。值可以为ansi、mysql323、mysql40、postgresql、oracle、mssql、db2、maxdb、no_key_options、n
下面三个方法都可以完成这个需求1.第一种方法:使用grep命令进行统计grep -o '字符串' file |wc -l2.第二种方法:使用awk命令进行统计awk -v RS="@#$j" '{print gsub(/字符串/,"&")}' file3.第三种方法:另一种使用awk命令进行统计的方法awk '{s+=gsub(/字符串/,"&")}END{print
Here are the basics to add a new device to a Brocade SAN fabric. I’m working with a Brocade DCX switch. In this scenario, there is a new server come with 2 HBA card that going to attach to the SAN s
8.9.3.1 How the Query Cache Operates8.9.3.2 Query CacheSELECT Options8.9.3.3 Query Cache Configuration8.9.3.4 Query Cache Status and MaintenanceThe query cache stores the text of a SELECT&nb
8.10.1 Internal Locking Methods8.10.2 Table Locking Issues8.10.3 Concurrent Inserts8.10.4 Metadata Locking8.10.5 External LockingWhen your database is busy with multiple sessions reading and writing d
8.10.1 Internal Locking Methods 8.10.2 Table Locking Issues 8.10.3 Concurrent Inserts 8.10.4 Metadata Locking 8.10.5 External Locking When your database is busy with multiple sessions
The MySQL Query Cache 8.9.3.1 How the Query Cache Operates 8.9.3.2 Query Cache SELECT Options 8.9.3.3 Query Cache Configuration 8.9.3.4 Query Cache Status and Maintenance The que
The InnoDB Buffer Pool InnoDB maintains a storage area called the buffer pool for caching data and indexes in memory. Knowing how the InnoDB buffer pool works, and taking advantage
Copyright © 2005-2024 51CTO.COM 版权所有 京ICP证060544号