博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
关于MySQL的init-file选项的用法实例
阅读量:6271 次
发布时间:2019-06-22

本文共 2248 字,大约阅读时间需要 7 分钟。

hot3.png

这段时间失业中,刚好在家有大把的时间学习ORACLE和MySQL.顺便也把PHP捡起来。逛逛论坛。
今天论坛上有人问起,刚好写个例子,贴上来。^_^
init-file 是在MySQL启动的时候加载的脚本。
有两个要注意的。
1. 确保你的mysqld 编译的时候没有加  --disable-grant-options 开关。
2. 确保init-file指定的脚本每行一个具体的语句。
使用方法很简单,直接添加到配置文件,比如my.cnf.
添加:
[server] 或者 [mysqld] 或者 [mysqld_safe]
init-file="Your file location"
重启mysqld 就可以看到效果了。
我来做个简单的例子。利用init-file来生成一个CACHE表的数据。
环境: Vbox 虚拟机 Ubuntu 32Bit, MySQL 5.1.30, 启动脚本/home/david/script/control_db
# /home/david/scripts/control_db enter
Enter password:
...
mysql> use ytt;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed
mysql> create table ytt_test ( id int unsigned not null, suffix tinyint unsigned not null, primary key(id,suffix));
Query OK, 0 rows affected (0.00 sec)
mysql> insert into ytt_test (id,suffix) values (1,10),(1,20),(1,50),(1,52),(2,55),(2,1),(2,30),
    ->(2,80),(3,100),(3,22),(3,4),(4,50),(4,20),(4,2),(5,10),(5,90);
Query OK, 16 rows affected (0.00 sec)
Records: 16  Duplicates: 0  Warnings: 0
简单的CACHE表。
mysql> create table ytt_test_heap engine memory select * from ytt_test where 0;
Query OK, 0 rows affected (0.01 sec)
Records: 0  Duplicates: 0  Warnings: 0
任务就是取到每个分组的最大值。
mysql> select a.* from ytt_test as a where suffix = (select max(suffix) from ytt_test where id = a.id);
+----+--------+
| id | suffix |
+----+--------+
|  1 |     52 |
|  2 |     80 |
|  3 |    100 |
|  4 |     50 |
|  5 |     90 |
+----+--------+
5 rows in set (0.02 sec)
然后放到CACHE表中。关于SQL语句优化方面我另外会写的。现在时间多啊。
现在搞init-file
加如下部分到my.cnf
[server]
init-file=/home/david/i.e/init.file
文件/home/david/i.e/init.file 内容很简单,如下:
use ytt;
insert into ytt_test_heap select a.* from ytt_test as a where suffix = (select max(suffix) from ytt_test where id = a.id);
给相应的权限。
# chown -R mysql.mysql /home/david/i.e/init.file
# chmod 0660 /home/david/i.e/init.file
然后重启 mysqld.
# /home/david/scripts/control_db stop
# /home/david/scripts/control_db start
# /home/david/scripts/control_db enter
Enter password:
...
mysql> select * from ytt_test_heap;
+----+--------+
| id | suffix |
+----+--------+
|  1 |     52 |
|  2 |     80 |
|  3 |    100 |
|  4 |     50 |
|  5 |     90 |
+----+--------+
5 rows in set (0.00 sec)
看到效果了吧。

本文出自 “” 博客,请务必保留此出处

转载于:https://my.oschina.net/u/585111/blog/219459

你可能感兴趣的文章
cv resource
查看>>
关于加快INSERT语句执行速度和HINT /*+ append */及/*+ append nologging */的使用
查看>>
JDK源代码学习系列07----Stack
查看>>
firefox
查看>>
PS批处理的使用
查看>>
七天学会ASP.NET MVC (一)——深入理解ASP.NET MVC 【转】
查看>>
Quartz作业调度框架
查看>>
腾讯云下安装 nodejs + 实现 Nginx 反向代理
查看>>
js-权威指南学习笔记13
查看>>
《超级时间整理术》晨读笔记
查看>>
Spring Boot 2.0(二):Spring Boot 2.0尝鲜-动态 Banner
查看>>
Delphi IdTCPClient IdTCPServer 点对点传送文件
查看>>
Delphi中使用ActiveX的一些心得
查看>>
QT5.8.0+MSVC2015安装以及环境配置(不需要安装VS2015)
查看>>
(原創) C/C++的function prototype和header file (C/C++) (C)
查看>>
深入理解JavaScript系列(29):设计模式之装饰者模式
查看>>
程序员的罪与罚
查看>>
SQL*LOADER错误总结
查看>>
SQL日志收缩
查看>>
【转】MySQL Query Cache 小结
查看>>