MySQL Forums
Forum List  »  InnoDB

Re: Show innodb engine status tuning db server
Posted by: Frwa Onto
Date: September 27, 2013 03:53AM

Dear Rick,
The autocommit is set to false at the very top.I saw this but is very rarely appears and could not catch the innodb log.
CREATE TABLE IF NOT EXISTS `tblAst` (
  `astID` int(5) NOT NULL,
  `entID` int(5) NOT NULL,
  `ctID` int(5) NOT NULL,
  `ast` varchar(50) NOT NULL,
  `vID` int(5) NOT NULL,
  `mstID` int(5) NOT NULL,
  `emIDInsert` int(5) NOT NULL,
  `dateTimeInsert` datetime NOT NULL,
  `dateTimeStart` datetime NOT NULL,
  `emIDEnd` int(5) NOT NULL DEFAULT '0',
  `dateTimeEnd` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `astType` enum('S','SM','SSS') NOT NULL,
  `astStatus` enum('a','d','e','m') NOT NULL,
  PRIMARY KEY (`astID`),
  KEY `astStatus` (`astStatus`),
  KEY `entID` (`entID`),
  KEY `mstID` (`mstID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

UPDATE tblAst SET dateTimeStart='2013-09-21 19:11:12' Where astID=3458

Options: ReplyQuote


Subject
Views
Written By
Posted
2478
September 15, 2013 09:37AM
Re: Show innodb engine status tuning db server
1047
September 27, 2013 03: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.