RE: analyze table issue

2010-06-18 Thread Steven Staples
Nevermind, it just finished... holy uggh! Steven Staples > -Original Message- > From: Steven Staples [mailto:sstap...@mnsi.net] > Sent: June 18, 2010 2:31 PM > To: mysql@lists.mysql.com > Subject: analyze table issue > > Ok, I know I am an idiot sometimes, and I

analyze table issue

2010-06-18 Thread Steven Staples
Ok, I know I am an idiot sometimes, and I think this falls into that category. I use SQLYog as my MySQL front end editor. I was looking to do some things, and was going to run a check table command, and clicked the "analyze" button, and didn't realize that all the tables in the database were sel

analyze table

2008-06-05 Thread Ananda Kumar
Hi All, We have proc which create around 7 table, inserts data , creates indexes and then run analyze table command. The analyze table command on 7 tables are taking around 18 hrs. They are myisam table. The db server has 8 cpu, 16gb RAM, with both innodb and myisam. Is there a way we can

Analyze Table

2005-04-11 Thread Emmett Bishop
Howdy all, Quick question about Analyze table. I just deleted 3+ million records from a table that gets a lot of insert activity throughout the day. It seems like now would be a good time to run optimize table and/or analyze table. I saw in the docs that analyze table puts a read lock on the

Re: How to speed up ANALYZE TABLE?

2004-12-30 Thread Sasha Pachev
Kevin A. Burton wrote: The ANALYZE TABLE entry in the manual doesn't say anything about performance optimization. How do I get optimum performance out of ANALYZE TABLE? Can I just set the same variables as I would with REPAIR TABLE? key_buffer_size sort_buffer_size myisam_sort_buffer_size

How to speed up ANALYZE TABLE?

2004-12-26 Thread Kevin A. Burton
The ANALYZE TABLE entry in the manual doesn't say anything about performance optimization. How do I get optimum performance out of ANALYZE TABLE? Can I just set the same variables as I would with REPAIR TABLE? key_buffer_size sort_buffer_size myisam_sort_buffer_size Also... Does A.T. always

Re: Do Analyze Table before Optimize Table or the other way around??

2004-08-10 Thread Egor Egorov
"Scott Fletcher" <[EMAIL PROTECTED]> wrote: > I wanna know is do I do the Analyze the table before the Optimize the > table or should I do it the other way around??? If you need to defragment the table, you can just run OPTIMIZE TABLE. -- For technical support contracts, goto https://order

Do Analyze Table before Optimize Table or the other way around??

2004-08-09 Thread Scott Fletcher
I wanna know is do I do the Analyze the table before the Optimize the table or should I do it the other way around??? Thanks, FletchSOD

Re: Can we remove the results of "Analyze Table"?

2003-09-01 Thread Sergei Golubchik
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

Re: Can we remove the results of "Analyze Table"?

2003-09-01 Thread Victoria Reznichenko
"Kevin Fries" <[EMAIL PROTECTED]> wrote: > > Can we 'unanalyze' a table? I'd like to remove the statistical > information from my analyzed table, for testing purposes. > You can't. -- For technical support contracts, goto https://order.mysql.com/?ref=ensita This email is sponsored by Ensita.

Can we remove the results of "Analyze Table"?

2003-08-29 Thread Kevin Fries
Can we 'unanalyze' a table? I'd like to remove the statistical information from my analyzed table, for testing purposes. Thanks Kevin

question about ANALYZE TABLE

2002-08-12 Thread Erick Papadakis
i noticed this on the mysql website: I found that when EXPLAIN gives unexpected results (like using another index than the one you created especially for this goal), first running ANALYZE TABLE on the involved tables helped a lot. I put an ANALYZE TABLE for 10 or so "key" tab

OPTIMIZE TABLE / ANALYZE TABLE behaviour ?

2001-06-04 Thread Fournier Jocelyn [Presence-PC]
Hi, I notice a strange behaviour with OPTIMIZE TABLE and ANALYZE TABLE (on MyISAM table) : Before analysing my table, mysql show me : mysql> show index from forumcontpresence