Usuário(a):ReyBrujo/Dumps/20070412

Origem: Wikipédia, a enciclopédia livre.
Dumps

April 12, 2007[editar | editar código-fonte]

External link dumps[editar | editar código-fonte]

Dump table Hits
Articles with more than 50 external links 89
SELECT COUNT(el_from) AS total, el_from, page_title
FROM externallinks, page
WHERE externallinks.el_from = page_id AND page_is_redirect = 0 AND page_namespace = 0
GROUP BY el_from
ORDER BY total DESC;

External link ranking[editar | editar código-fonte]

Dump table Hits
Sites linked more than 50 times 201
SELECT COUNT(el_to) AS total, SUBSTRING_INDEX(el_to, '/', 3) AS search
FROM externallinks, page
WHERE page_id = el_from AND page_namespace = 0
GROUP BY search
ORDER BY total DESC;

Additional information[editar | editar código-fonte]

Some more information about this dump:

  • 255250 articles that are in the main space and not redirects
  • 493739 articles and redirects in the main space
  • 852682 pages in all namespaces
  • 245422 redirects in all namespaces
  • 568469 external links in every namespace
  • 461574 external links in the main space

Very probable spambot pages[editar | editar código-fonte]

If index.php is found in a page title, it is very likely the article talk page has been created by a spambot. These pages should be deleted and protected if possible.

Article ID Article
914981 Nf-board/w/index.php
175559 W/index.php
175875 Talk:W/index.php

Possible spambot pages[editar | editar código-fonte]

Possible pages created by spambots ending with /.

Article ID Article
865664 Vocetv/
651001 \\o/
815988 /guipastana/
126591 User:555/Caçada/
963496 User:Rei-artur/w/add
959636 User:Rei-artur/w/add/preload
959637 User:Rei-artur/w/add/txt
976231 User:Rei-artur/w/add2
815993 /guipastana/
127781 User talk:555/Caçada/
227102 User talk:Predefinição teste/Info/Montanha/
959646 User talk:Rei-artur/w/add
863233 Wikipedia:Páginas para eliminar/Jamesbong/
984113 Wikipedia:Páginas para eliminar/\\o/
345839 Template:=/
419190 Category:Itens candidatos à eliminação/
SELECT page_id, page_title, page_namespace
FROM page
WHERE page_title LIKE '%index.php%' OR page_title LIKE '%/wiki/%' OR page_title LIKE '%/w/%' OR page_title LIKE '%/';