Hi!

On Aug 29, Kevin Fries wrote:
> Can we 'unanalyze' a table?  I'd like to remove the statistical
> information from my analyzed table, for testing purposes.

yes, but it is not easy.
You cannot mark the table as "unanalyzed" - so you need to rebuild it
somehow.

REPAIR TABLE table_name EXTENDED

or

myisamchk -o table_name

should be enough.

Be sure to run

myisamchk -dvv table_name

before and after repair - to be sure you indeed un-analyzed the table.

Regards,
Sergei

-- 
   __  ___     ___ ____  __
  /  |/  /_ __/ __/ __ \/ /   Sergei Golubchik <[EMAIL PROTECTED]>
 / /|_/ / // /\ \/ /_/ / /__  MySQL AB, Senior Software Developer
/_/  /_/\_, /___/\___\_\___/  Osnabrueck, Germany
       <___/  www.mysql.com

-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to