文为世范,行为士则
其中my.cnf文件是:[mysql]default-character-set=gbk(控制连接的字符集,character_set_client character_set_connectio...
导出:/usr/local/webserver/mysql/bin/mysqldump -uroot -p'xxx' -S /data/3306/mysql.sock --single-transaction --default-character-set=utf8 apps t_a...
问题描述:今天早上帮同事导入300w的数据到内网测试库里,发现导入过程中,有数据出现了问题。经分析,数据有日文,在rz传输的时候出现了问题,只截取了一部分的数据。解决方法:第一步,就是在windows下面打包成zip格式。
file -i t_app_song_doc_rel.sqlcat t_app_song_doc_rel.sql |iconv -f utf-8 -c -t gb18030 -c >/root/t_app_song_doc_rel_bak.
Install MongoDB on RedHat Enterprise,CentOS, or Fedora Linux Package Options The 10gen repository contains four packages: mongo-10gen(这个包...
mail -s "zsd" zhangshengdong@xxx.com 把/root/1.sql的文本内容,发送给zhangshengdong@xxx.com邮箱中
/usr/local/mysql55/bin/mysqldump -uroot -S /data/mysqldata/3306/mysql.sock --single-transaction --default-character-set=gbk test t10>/usr/tmp/testzsd.
Storage Requirements for String Types Data Type Storage Required CHAR(M) M × w bytes, 0 M 255, where w is the number of bytes required ...
mysql> CREATE USER 'repl'@'192.168.1.50' IDENTIFIED BY 'repl'; mysql> GRANT REPLICATION SLAVE ON *.
[root@localhost ~]# cd ch01[root@localhost ch01]# ls[root@localhost ch01]# vi listing1-1.c#include int main(void){ int dogs; printf("How...
加索引的怪异问题:数据库的版本是5.5.20 linux的版本是CentOS release 6.2 (Final)添加username和email的索引(system@localhost) [baike]> create index idx_use...
在SecureCRT里面,总是输入中文的时候出现,不大不小的问题。就是不识别根本的问题是要修改LANG环境变量export LANG=zh_CN.GB18030中文的问题,即可解决
关于索引的有趣现象: 今天在创建索引的时候,发现一个版本的差异。 在5.1版本创建索引. mysql> create index idx_username on bk_user(username(20)); Query OK, 226 rows affected (0.
在讲权限的时候,官方有一句话: Do not ever give anyone (except MySQL root accounts) access to the user table in the mysql database! 不要让任何人有进入mysql.user表的权限 Never grant privileges to all hosts. 绝不赋予权限给任何的主机 mysql的用户认证系统:有两个阶段: 验证和授权 (1)验证,第一步先走mysql.user表,查看是否有这个用户,如果有,则匹配授权,没有的话就拒绝连接。
Storage Requirements for Date and Time Types Data Type Storage Required DATE 3 bytes TIME 3 bytes DATETIME 8 bytes TIMESTAM...
120710 11:01:38 InnoDB: Initializing buffer pool, size = 8.0GInnoDB: mmap(8791261184 bytes) failed; errno 12120710 11:01:38 InnoDB: Completed ...
Fixed-Point Types (Exact Value) - DECIMAL, NUMERIC(定点数类型) Floating-Point Types (Approximate Value) - FLOAT, DOUBLE(浮点数类型) 一般数据库更多使用定点数类型,存储货币,因为在MySQL内部以字符串形式存放,比浮点数更精确。
Numeric Types (数字类型) Integer Types (整型类型) Type Storage Minimum Value Maximum Value (Bytes) (Signed/Unsig...
双主其实说白了也是一个replication,只是推出一些新的拓扑结构 主-主的复制有两种模式: 主动-主动模式下的主-主复制(Master-Master in Active-Active Mode) 模式下的主-主复制(Master-Master in Active-Passive Mode) 当然还有,环形和有从服务器的主-主复制,不过都是上面的延生。
replication可以使数据从master服务器复制到一个或者多个slave服务器,replication默认是asynchronous的,slaves不需要永久的连接去接受来自mater的更新操作。
MySQL数据库5.0.67升级至MySQL数据库5.1.62全过程 编译源代码mysql数据库5.0.67shell> groupadd mysql shell> useradd -g mysql mysql shell> tar zxvf mysql-5.
查看The Binary Log的方式有两种,一种是从mysql服务器里开始查询,另外一种是从mysql服务器外开始查询。官方给出的语法如下:(在mysql服务器里使用的语法)SHOW BINLOG EVENTS [IN 'log_name'] [FROM pos] [LIM...
mysql server有四种类型的日志 (参考的文档是5.5-en.html)The Error Log 错误日志The General Query Log 一般查询日志The Binary Log 二进制日志The Slow Query Log 慢查询日志 其中: 错误日志,顾名思义,包含了mysqld启动,关闭和服务器运行时发生了任何错误的信息都会写在error log上面。
xtrabackup是第三方的mysql热备工具下载xtrabackup网址:http://www.percona.com/downloads/ ,这里能找到你想要的xtrabackup版本安装xtrabackuptar zxvf percona-xtrabackup-2.
history | grep mysql(可以查看以前打过的shell命令)[zhangshengdong@mysql-1-1 ~]$ file -i 1.txt(查看文件的类型) 1.
再一次做mysql测试的时候,启动mysql,碰到了[ERROR] /usr/local/mysql55/bin/mysqld: Can't find file: './mysql/host.
首先创建专用帐户: [root@localhost zsdins]# groupadd mysql [root@localhost zsdins]# useradd -r -g mysql mysql 安装cmake(mysql5.
今天弄了一天的虚拟机linux连接外网的问题.终于弄成功了。把问题都整理出来,以防以后忘记我安装的是redhat linux 5.4(64位).在安装的界面的时候,就配置了ip,子网掩码,网关,(没有配置DNS).
Perl中一种有趣输入的方法,钻石操作符例子: 点击(此处)折叠或打开 [root@zsd script]# cat ex1_2.pl #!/usr/bin/perl while(>){ chomp; print "It was $_ tha...
(.)是元字符,匹配任何的单字符。/bet.y/ 这个模式匹配 bet,中间接任何一个字符(除换行符外),后面接Y字符。/3\.14159/ (\.)这消除元字符含义,只匹配句点号本身。
第一步:下载perl网站http://www.perl.org/get.html#unix_like 找到unix,下载源代码第二步:源码编译tar zxvf perl-5.16.0.
Mysql_slow_log_parser.txt txt脚本的名字要改名为pl使用方式:./Mysql_slow_log_parser.pl /data/mysqldata/3306/data/zsd-slow.