Clearing Magento Log Data

前端 未结 15 614
粉色の甜心
粉色の甜心 2020-12-07 08:31

I have a question regarding clearing of the log data in Magento.

I have more than 2.3GB of data in Magento 1.4.1, and now I want to optimize the database, because it

15条回答
  •  攒了一身酷
    2020-12-07 09:34

    TRUNCATE `log_url_info`;
    TRUNCATE `log_visitor_info`;
    TRUNCATE `index_event`;
    TRUNCATE `log_visitor`;
    TRUNCATE `log_url`;
    TRUNCATE `report_event`;
    TRUNCATE `dataflow_batch_import`;
    TRUNCATE `dataflow_batch_export`;
    

    I just use it.

提交回复
热议问题