It was relatively easy to create and load a MySql 4.0 database with
MaxDb (the biggest issue was dealing with table / column name cases);
however, mysqldump does not work. Is it / will it be supported, or do I
need to do something different?  Note that I am running the command as
the DBA / owner of the tables and they all have public synonyms.  The
following command, 

 

mysqldump -hServer1 -uDBA -pGOOD4U foo 

 

produces the following output:

 

-- MySQL dump 8.22

--

-- Host: localhost    Database: foo

---------------------------------------------------------

-- Server version       4.0.14

--

-- Table structure for table 'ACTION                          '

--

 

CREATE TABLE `ACTION` (

  `PKEY` INT (10)   NOT NULL DEFAULT DEFAULT SERIAL (1),

  `ACTION` VARCHAR (32),

  PRIMARY KEY (`PKEY`)

) TYPE=innoDB;

 

--

-- Dumping data for table 'ACTION                          '

--

 

mysqldump: Got error: 1105: MaxDB [-4004] Unknown table name:ACTION when
retrieving data from server

Reply via email to