Order Vocablularies Terms Alphabetically

Order Vocablularies alphabetically by running this SQL snippet on the 'vocabulary' table in you Drupal Database.

This was edited from the code found here: http://www.thingy-ma-jig.co.uk/blog/07-08-2007/how-to-weigh-terms-alphab...

Snippet:

SELECT * FROM `vocabulary` WHERE 1;
set @cnt = 0;
update vocabulary set weight = @cnt := (@cnt+1) where order by name;