1. Background As the project's business continues to move forward, it is inevitable that the number of database tables will become larger and larger, constantly occupying hard disk space. Even a larger space cannot support the growth of business, so it is necessary to delete unnecessary data regularly. In our project, due to the lack of data cleaning, the space occupied by a table reached as much as 4G. Just think how scary it is... Here we introduce how to use MySQL to create a timer Event to regularly clear previous unnecessary events. 2. Content #1. Create a stored procedure for events to call delimiter// drop procedure if exists middle_proce// create procedure middle_proce() begin DELETE FROM jg_bj_comit_log WHERE comit_time < SUBDATE(NOW(),INTERVAL 2 MONTH); optimize table jg_bj_comit_log; DELETE FROM jg_bj_order_create WHERE created_on < SUBDATE(NOW(),INTERVAL 3 MONTH); optimize table jg_bj_order_create; DELETE FROM jg_bj_order_match WHERE created_on < SUBDATE(NOW(),INTERVAL 3 MONTH); optimize table jg_bj_order_match; DELETE FROM jg_bj_order_cancel WHERE created_on < SUBDATE(NOW(),INTERVAL 3 MONTH); optimize table jg_bj_order_cancel; DELETE FROM jg_bj_operate_arrive WHERE created_on < SUBDATE(NOW(),INTERVAL 3 MONTH); optimize table jg_bj_operate_arrive; DELETE FROM jg_bj_operate_depart WHERE created_on < SUBDATE(NOW(),INTERVAL 3 MONTH); optimize table jg_bj_operate_depart; DELETE FROM jg_bj_operate_login WHERE created_on < SUBDATE(NOW(),INTERVAL 3 MONTH); optimize table jg_bj_operate_login; DELETE FROM jg_bj_operate_logout WHERE created_on < SUBDATE(NOW(),INTERVAL 3 MONTH); optimize table jg_bj_operate_logout; DELETE FROM jg_bj_operate_pay WHERE created_on < SUBDATE(NOW(),INTERVAL 3 MONTH); optimize table jg_bj_operate_pay; DELETE FROM jg_bj_position_driver WHERE created_on < SUBDATE(NOW(),INTERVAL 3 MONTH); optimize table jg_bj_position_driver; DELETE FROM jg_bj_position_vehicle WHERE created_on < SUBDATE(NOW(),INTERVAL 3 MONTH); optimize table jg_bj_position_vehicle; DELETE FROM jg_bj_rated_passenger WHERE created_on < SUBDATE(NOW(),INTERVAL 3 MONTH); optimize table jg_bj_rated_passenger; end// delimiter; #2. Enable event (for the timing to work, the MySQL constant GLOBAL event_scheduler must be on or 1) show variables like 'event_scheduler' set global event_scheduler='on' #3、Create Evnet event drop event if exists middle_event; create event middle_event on schedule every 1 DAY STARTS '2017-12-05 00:00:01' on completion preserve ENABLE do call middle_proce(); #4、Open Event alter event middle_event on completion preserve enable; #5. Close Event event alter event middle_event on completion preserve disable; The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Detailed explanation of the use of Vue3 state management
>>: How to install ionCube extension using pagoda
1. Horizontal center Public code: html: <div c...
1. HTML Image <img> 1. The <img> tag ...
Overview Backup is the basis of disaster recovery...
User Groups In Linux, every user must belong to a...
1. Development environment vue 2. Computer system...
Write configuration files in server.xml and conte...
This is a test of the interviewee's basic kno...
We have many servers that are often interfered wi...
"Development is more than just writing code&q...
Table of contents 01 Introduction to InnoDB Repli...
Table of contents 1. What is a closure? 1.2 Memoi...
Table of contents 1. Introduction to PXC 1.1 Intr...
Let’s start the discussion from a common question...
Table of contents 1. Introduction 2. Simple defin...
The specific code is as follows: The html code is...