jk2008 Posted March 27, 2016 Share Posted March 27, 2016 Hi Module logs are currently over 5GB. Do you know if its safe to trim the logs (removing logs over 1 months old) via mysql? And what the mysql syntax will be? Thanks for your help in advance. Thanks, 0 Quote Link to comment Share on other sites More sharing options...
sentq Posted March 27, 2016 Share Posted March 27, 2016 use can clear all log records from admin area, or using this SQL command: TRUNCATE `tblmodulelog`; or delete all records before March 2016 DELETE FROM `tblmodulelog` WHERE `date` < '2016-03-01 00:00:00'; 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.