MySQL Forums
Forum List  »  InnoDB

Re: mysql online ddl still lock
Posted by: hua kai
Date: February 29, 2016 11:32PM

Hi, Rick, Here is one table schema

CREATE TABLE `zm_meeting` (
`meeting_id` varchar(36) NOT NULL,
`host_id` varchar(36) NOT NULL,
`meeting_number` bigint(10) NOT NULL ,
`status` tinyint(4) NOT NULL,
`topic` varchar(200) NOT NULL,
`password` varchar(64) DEFAULT NULL,
`agenda` varchar(2000) DEFAULT NULL,
`options` bigint(10) NOT NULL,
`type` tinyint(4) DEFAULT '0',
`created_by` tinyint(4) DEFAULT '0' ,
`start_time` datetime DEFAULT NULL ,
`end_time` datetime DEFAULT NULL ,
`schedule_time` datetime DEFAULT NULL ,
`duration` int(10) DEFAULT '0' ,
`repeat_type` tinyint(4) DEFAULT '0',
`repeat_end_time` datetime DEFAULT NULL,
`timezone` varchar(256) DEFAULT NULL ,
`minutes` int(10) DEFAULT '0' ,
`attendees` int(10) DEFAULT '0' ,
`attendees_viewonly` int(10) DEFAULT '0',
`total_minutes` int(10) DEFAULT '0' ,
`total_minutes_viewonly` int(10) DEFAULT '0',
`attendee_list` text ,
`session_list` varchar(64) DEFAULT NULL ,
`phone_id` int(10) DEFAULT NULL ,
`callin_number` varchar(256) DEFAULT NULL ,
`ping_zc` varchar(4000) DEFAULT NULL,
`host_zc` varchar(256) DEFAULT NULL,
`host_zone` varchar(64) DEFAULT NULL ,
`top_mmr` varchar(256) DEFAULT NULL,
`email_reminder` tinyint(4) DEFAULT '0' ,
`assistant_id` varchar(36) DEFAULT NULL ,
`crc_meeting` tinyint(4) DEFAULT '0' ,
`ping_bc` varchar(4000) DEFAULT NULL ,
`panelist_key` varchar(36) DEFAULT NULL,
`create_time` datetime NOT NULL,
`modify_time` datetime NOT NULL,
PRIMARY KEY (`meeting_id`),
UNIQUE KEY `meeting_number` (`meeting_number`),
KEY `start_time` (`start_time`),
KEY `modify_time` (`modify_time`),
KEY `host_zone` (`host_zone`),
KEY `top_mmr` (`top_mmr`(64)),
KEY `host_id` (`host_id`),
KEY `assistant_id` (`assistant_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8

Options: ReplyQuote


Subject
Views
Written By
Posted
2315
February 19, 2016 02:35AM
1482
February 19, 2016 03:09AM
1367
February 19, 2016 06:53AM
1391
February 20, 2016 01:38AM
1110
August 24, 2016 03:48AM
980
August 25, 2016 07:40PM
1131
August 30, 2016 09:33PM
1097
September 01, 2016 04:55PM
1044
September 01, 2016 11:40PM
1039
September 03, 2016 05:05PM
1039
September 05, 2016 01:20AM
1032
September 05, 2016 03:54PM
922
September 08, 2016 04:04AM
994
September 10, 2016 12:19AM
1292
February 23, 2016 11:29PM
Re: mysql online ddl still lock
1610
February 29, 2016 11:32PM
1500
March 05, 2016 12:19AM
1403
March 07, 2016 03:34AM
1390
March 31, 2016 02:32AM
1334
April 02, 2016 12:39AM
1338
May 13, 2016 02:44AM
1214
May 24, 2016 09:53AM


Sorry, you can't reply to this topic. It has been closed.

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.