Chinaunix首页 | 论坛 | 博客
  • 博客访问: 368107
  • 博文数量: 85
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 657
  • 用 户 组: 普通用户
  • 注册时间: 2013-07-17 20:48
个人简介

行到水穷处,坐看云起时

文章分类

全部博文(85)

文章存档

2019年(2)

2018年(1)

2016年(1)

2015年(66)

2014年(15)

我的朋友

发布时间:2015-06-09 15:34:57

alter table tableName | add {index|key} [index_name] [index_type] (index_col_name,...) [index_option] ... algorithm [=] {default | inplace | copy} lock [=] {default | none | shared | exclusive}innodb_online_alter_log_max_size:innodb实现online ddl在执行创建或者删除的时候,.........【阅读全文】

阅读(784) | 评论(0) | 转发(0)

发布时间:2015-06-09 10:04:55

mysql -hlocalhost -uroot -ppassword launcher -s -e "show processlist" | awk '{if(index($3,":") > 0){total[substr($3,0,(index($3,":"))-1)]+=1}else{total[$3]+=1}}END{for (a in total)print a,total[a]}'......【阅读全文】

阅读(1025) | 评论(0) | 转发(0)

发布时间:2015-02-10 17:35:05

转自:http://blog.sina.com.cn/s/blog_6183b4210100fuel.htmlMySQL 时区默认是服务器的时区。可以通过以下命令查看SQL代码mysql> show variables like '%time_zone%';   +------------------+--------+   | Variable_name&n.........【阅读全文】

阅读(952) | 评论(0) | 转发(0)

发布时间:2015-01-20 16:13:59

进入MySQL安装目录执行 scripts/mysql_install_db --datadir=/usr/local/mysql/data (替换成数据库文件目录)然后启动mysql服务器,成功。 ......【阅读全文】

阅读(1753) | 评论(0) | 转发(0)

发布时间:2014-11-29 17:32:44

/* 数据库总存储空间 */select sum(data_length+index_length) size from information_schema.tables;/* 不同数据库的存储空间 */select table_schema,sum(data_length+index_length) size from information_schema.tables group by table_schema order by size desc;/* 指定库下不同表的存储空间 */select table_.........【阅读全文】

阅读(1328) | 评论(0) | 转发(0)
给主人留下些什么吧!~~

gaobaoqiang19832015-07-02 17:32

回复  |  举报
留言热议
请登录后留言。

登录 注册