我使用的是MySQl,有一个名为cars的表格,载于我的dev_db数据库。
我在表格中插入了6 000 000数据(其中含有大量数据)。 如下:
INSERT INTO cars (cid, name, msg, date)
VALUES (1, blabla , blabla , 2001-01-08 ),
(11, blabla , blabla , 2001-11-28 ),
... ,
(3, blabla , blabla , 2010-06-03 );
After this large data insertion into my cars table
I decide to also optimize the table like following:
OPTIMIZE TABLE cars;
我等待了53名议员的优化,最后是做的,我的谢克尔·乔尔向我传达了以下信息:
<代码>Msg_text 下表显示:这一表格并不支持优化......,这使我的脑能2个问题,请:
1. Does the mysql message above means the 53min I waited actually did nothing useful??
<>strong>2. 是用大量数据插入后优化我的表格的必要条件? 以及为什么?