Jump to content

Clear module queue


Recommended Posts

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?

Link to comment
Share on other sites

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. 🙂

Link to comment
Share on other sites

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!

Link to comment
Share on other sites

  • 3 years later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated