Some changes to the link tables. They now all use a key on cur_id for the *_from...
[lhc/web/wiklou.git] / maintenance / recount.sql
1 --
2 -- Recalculate the article count
3 --
4
5 SELECT @foo:=COUNT(*) FROM cur
6 WHERE cur_namespace=0 AND cur_is_redirect=0 AND cur_text like '%[[%';
7 UPDATE site_stats SET ss_good_articles=@foo;
8