Created
December 29, 2018 11:52
-
-
Save yogeshdubey2006/0c93183fcb994a32121ef25d6f5f7196 to your computer and use it in GitHub Desktop.
Magento 1 - Clearing the log files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SET foreign_key_checks = 0; | |
truncate adminnotification_inbox; | |
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 index_event; | |
truncate report_event; | |
truncate report_viewed_product_index; | |
truncate report_compared_product_index; | |
truncate catalog_compare_item; | |
truncate dataflow_batch_export; | |
truncate dataflow_batch_import; | |
truncate catalogindex_aggregation; | |
truncate catalogindex_aggregation_tag; | |
truncate catalogindex_aggregation_to_tag; | |
truncate aw_core_logger; | |
SET foreign_key_checks = 1; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment