Fork of Unusually large redirect talk archives, archive-bot-edited by Cryptic
This query is marked as a draft This query has been published by Cryptic.

SQL

AخA
 
SELECT CONCAT('Talk:', REPLACE(page_title, '_', ' ')) AS pagename,
       page_len
FROM page
WHERE page_namespace = 1
  AND page_is_redirect = 1
  AND page_len >= 250
  AND CONVERT(page_title USING utf8) LIKE '%/archive%'
  AND EXISTS (SELECT 1
              FROM revision -- deliberately not revision_userindex - we already have a page_id, and this bots has LOTS of edits
                            JOIN comment_revision ON comment_id = rev_comment_id
              LEFT JOIN actor_revision ON rev_actor = actor_id AND actor_name IN ('AnomieBOT', 'Xqbot')
              WHERE rev_page = page_id
                AND comment_text LIKE '%rchiv%'
                AND actor_id IS NULL
              LIMIT 1)
ORDER BY page_len DESC;
By running queries you agree to the Cloud Services Terms of Use and you irrevocably agree to release your SQL under CC0 License.
All SQL code is licensed under CC0 License.

Checking query status...