Re: not optimizing the table after index is created
Posted by:
ragen sol
Date: October 18, 2011 04:24AM
Here is create table statement
CREATE TABLE `m_cont` (
`m_id` int(10) unsigned NOT NULL,
`m_type` varchar(50) default NULL,
`m_sb` varchar(500) default 'No Subject',
`snd_time` varchar(50) default NULL,
PRIMARY KEY (`msg_id`),
KEY `indx_msg_id_1` (`msg_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
I did not created the index at the time of table creation. but after that using
create index indx_name on table t1;
after that i ran the optimize table command;
then it showed that error.
Subject
Views
Written By
Posted
3144
October 15, 2011 04:04AM
1633
October 16, 2011 11:02AM
Re: not optimizing the table after index is created
1250
October 18, 2011 04:24AM
1110
October 18, 2011 09:31PM
1117
October 20, 2011 12:10AM
1282
October 20, 2011 09:30PM
Sorry, you can't reply to this topic. It has been closed.
This forum is currently read only. You can not log in or make any changes. This is a temporary situation.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.