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:

set @cnt = 0;
update term_data set weight = @cnt := (@cnt+1) order by name;