Skip to content

Instantly share code, notes, and snippets.

@loopool
Last active November 2, 2022 18:27
Show Gist options
  • Save loopool/5140580 to your computer and use it in GitHub Desktop.
Save loopool/5140580 to your computer and use it in GitHub Desktop.
Clearing magento log data
set foreign_key_checks = 0;
truncate dataflow_batch_export;
truncate dataflow_batch_import;
truncate log_customer;
truncate log_quote;
truncate log_summary;
truncate log_summary_type;
truncate log_url;
truncate log_url_info;
truncate log_visitor;
truncate log_visitor_info;
truncate log_visitor_online;
truncate report_viewed_product_index;
truncate report_compared_product_index;
truncate report_event;
truncate index_process_event;
truncate index_event;
set foreign_key_checks = 1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment