Toggle navigation
Home
New Query
Recent Queries
Discuss
Database tables
Database names
MediaWiki
Wikibase
Replicas browser and optimizer
Login
History
Fork
Fork of
Bad links from wikis to Commons: redirects
by
Achim55
This query is marked as a draft
This query has been published
by
Achim55
.
Toggle Highlighting
SQL
#USE dewiki_p; #USE dewikisource_p; #USE dewikiquote_p; USE dewikivoyage_p; #USE enwiki_p; #USE frwiki_p; #USE itwiki_p; #USE nlwiki_p; #USE metawiki_p; SET @w = LEFT (DATABASE(), LENGTH(DATABASE()) - 2); SET @l = (SELECT lang FROM meta_p.wiki WHERE dbname = @w); SET @len = LENGTH('https://species.wikimedia.org/wiki/'); SELECT now() AS timestamp; #interwiki links to category redirects (SELECT CONCAT ('# [[', IF (wp.page_namespace = 14, ':{{ns:14}}:', ''), REPLACE (wp.page_title, '_', ' '), ']] ', '→ [[:species:', REPLACE (iwl_title, '_', ' '), ']]') AS wikipage FROM iwlinks INNER JOIN page wp ON wp.page_id = iwl_from AND wp.page_namespace IN (0, 14) INNER JOIN specieswiki_p.page cp ON cp.page_title = SUBSTRING(iwl_title, 10) AND cp.page_namespace = 14 INNER JOIN specieswiki_p.categorylinks ccl ON ccl.cl_from = cp.page_id WHERE iwl_prefix IN ('wikispecies', 'species') AND iwl_title LIKE 'Category:%' AND (cp.page_is_redirect = 1 OR ccl.cl_to = 'Redirects_connected_to_a_Wikidata_item') ) UNION #interwiki links to article redirects (SELECT CONCAT ('# [[', IF (wp.page_namespace = 14, ':{{ns:14}}:', ''), REPLACE (wp.page_title, '_', ' '), ']] ', '→ [[:species:', REPLACE (iwl_title, '_', ' '), ']]') AS wikipage FROM iwlinks INNER JOIN page wp ON wp.page_id = iwl_from AND wp.page_namespace IN (0, 14) INNER JOIN specieswiki_p.page cp ON cp.page_title = iwl_title AND cp.page_namespace = 0 AND cp.page_is_redirect = 1 WHERE iwl_prefix IN ('wikispecies', 'species') AND iwl_title NOT LIKE 'Category:%' ) UNION #external interwiki links to category redirects (SELECT CONCAT('# [[', IF (wp.page_namespace = 14, ':{{ns:14}}:', ''), REPLACE (wp.page_title, '_', ' '), ']] ', '→ [[:species:Category:', REPLACE (cp.page_title, '_', ' '), ']]') AS wikipage FROM externallinks INNER JOIN page wp ON wp.page_id = el_from AND wp.page_namespace IN (0, 14) INNER JOIN specieswiki_p.page cp ON cp.page_title = SUBSTRING(REPLACE (REPLACE (el_to, '#mw-subcategories', ''), CONCAT('?uselang=', @l), ''), IF ((LEFT (el_to, 5) = 'https'), @len + 10, @len + 9)) AND cp.page_namespace = 14 INNER JOIN specieswiki_p.categorylinks ccl ON ccl.cl_from = cp.page_id WHERE el_to LIKE 'https://species.wikimedia.org/wiki/Category:%' AND el_to NOT LIKE '%\%%' #temp AND (cp.page_is_redirect = 1 OR ccl.cl_to = 'Redirects_connected_to_a_Wikidata_item') ) UNION #external interwiki links to article redirects (SELECT CONCAT('# [[', IF (wp.page_namespace = 14, ':{{ns:14}}:', ''), REPLACE (wp.page_title, '_', ' '), ']] ', '→ [[:species:', REPLACE (cp.page_title, '_', ' '), ']]') AS wikipage FROM externallinks INNER JOIN page wp ON wp.page_id = el_from AND wp.page_namespace IN (0, 14) INNER JOIN specieswiki_p.page cp ON cp.page_title = SUBSTRING(REPLACE (el_to, CONCAT('?uselang=', @l), ''), IF ((LEFT (el_to, 5) = 'https'), @len + 1, @len)) AND cp.page_namespace = 0 AND cp.page_is_redirect = 1 WHERE ((el_to LIKE 'https://species.wikimedia.org/wiki/%') OR (el_to LIKE 'http://species.wikimedia.org/wiki/%')) AND el_to NOT LIKE '%//species.wikimedia.org/wiki/Category:%' AND el_to NOT LIKE '%\%%' #temp ) ORDER BY wikipage LIMIT 1000;
By running queries you agree to the
Cloud Services Terms of Use
and you irrevocably agree to release your SQL under
CC0 License
.
Submit Query
Stop Query
All SQL code is licensed under
CC0 License
.
Checking query status...