robetus Posted May 18, 2020 Share Posted May 18, 2020 Is there any way to clear the module queue besides clicking on buttons? I have about 1200 items in there right now and I'd like to clear them all out. One of my custom module causes them but there is no issue, it's only a simple warning. Can I clear out the tblmodulequeue table in the database? 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted May 18, 2020 Share Posted May 18, 2020 4 hours ago, robetus said: Can I clear out the tblmodulequeue table in the database? you could run a SQL query on the database table that would mark the tasks in there as completed... UPDATE tblmodulequeue SET completed = 0 ... that would result in them being removed from that page, but still stored in the database. you could modify the query to delete (truncate) the table rather than update - just depends how through you want to be with this. 🙂 1 Quote Link to comment Share on other sites More sharing options...
robetus Posted May 19, 2020 Author Share Posted May 19, 2020 19 hours ago, brian! said: you could run a SQL query on the database table that would mark the tasks in there as completed... UPDATE tblmodulequeue SET completed = 0 ... that would result in them being removed from that page, but still stored in the database. you could modify the query to delete (truncate) the table rather than update - just depends how through you want to be with this. 🙂 The SQL query works just fine, thanks again! 0 Quote Link to comment Share on other sites More sharing options...
Nexta Web Solution Posted December 10, 2023 Share Posted December 10, 2023 Hi brian!, i think you make a small mistake. I Think it will be UPDATE tblmodulequeue SET completed = 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.