Hi,
(newishby) I have a MySQL server on Linux Mint., and an installation on windows.
Windows installation
- workbench manually create table - ok
- scripted sql scripted create table ok
Linux Local Workbench
- workbench manually create table - ok
- scripted sql create table fails with 'Query interrupted'
Windows workbench pointed at Linux server
- workbench manually create table - ok
- scripted create table fails with 'Query interrupted'
So it has to be the server and not the workbench or the sql itself.
below is the sql that fails on the server on Linux.
-----
CREATE TABLE `RiskDataCollector`.`criskposamt_current` (
`UltraMarketsIDVal` bigint(20) NOT NULL,
`UpdateTime` datetime(6) NOT NULL DEFAULT '1970-01-01 00:00:00.000000',
`AccountID` int(11) NOT NULL DEFAULT '0',
`PosAmtType` varchar(100) NOT NULL DEFAULT '',
`PosAmt` double DEFAULT NULL,
`InvalidReason` varchar(4000) DEFAULT NULL,
`EntryDateTime` datetime(6) DEFAULT NULL,
PRIMARY KEY (`AccountID`,`PosAmtType`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-----
what can be different about the Linux install that would make this happen
Any ideas?
M
(newishby) I have a MySQL server on Linux Mint., and an installation on windows.
Windows installation
- workbench manually create table - ok
- scripted sql scripted create table ok
Linux Local Workbench
- workbench manually create table - ok
- scripted sql create table fails with 'Query interrupted'
Windows workbench pointed at Linux server
- workbench manually create table - ok
- scripted create table fails with 'Query interrupted'
So it has to be the server and not the workbench or the sql itself.
below is the sql that fails on the server on Linux.
-----
CREATE TABLE `RiskDataCollector`.`criskposamt_current` (
`UltraMarketsIDVal` bigint(20) NOT NULL,
`UpdateTime` datetime(6) NOT NULL DEFAULT '1970-01-01 00:00:00.000000',
`AccountID` int(11) NOT NULL DEFAULT '0',
`PosAmtType` varchar(100) NOT NULL DEFAULT '',
`PosAmt` double DEFAULT NULL,
`InvalidReason` varchar(4000) DEFAULT NULL,
`EntryDateTime` datetime(6) DEFAULT NULL,
PRIMARY KEY (`AccountID`,`PosAmtType`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-----
what can be different about the Linux install that would make this happen
Any ideas?
M