Wikipedia:Links to (disambiguation) pages/How to update

From Wikipedia, the free encyclopedia

Updating the list can only be done by system administrators who have direct access to Wikipedia's MySQL database.

After entering the wikipedia database's MySQL command console, type the following to update the list:

SELECT CONCAT('#[[', REPLACE(cur_title,'_',' '), ']]') AS Disa
FROM cur
WHERE cur_title LIKE '%(disambiguation)' AND cur_namespace = 0
ORDER BY Lower(cur_title)
LIMIT 20000