Bug #15585 | Migration Tool Closes when you try to Generate Script or Save Current State | ||
---|---|---|---|
Submitted: | 8 Dec 2005 12:40 | Modified: | 9 Dec 2005 17:05 |
Reporter: | Guilherme Silva | Email Updates: | |
Status: | Can't repeat | Impact on me: | |
Category: | MySQL Migration Toolkit | Severity: | S3 (Non-critical) |
Version: | 1.0.21rc | OS: | Windows (Windows 2003 Server) |
Assigned to: | MySQL Verification Team | CPU Architecture: | Any |
[8 Dec 2005 12:40]
Guilherme Silva
[9 Dec 2005 17:05]
MySQL Verification Team
I was unable to repeat the behavior reported using an Access 2003 as source database. -- ---------------------------------------------------------------------- -- MySQL Migration Toolkit -- SQL Create Script -- ---------------------------------------------------------------------- SET FOREIGN_KEY_CHECKS = 0; CREATE DATABASE IF NOT EXISTS `dbtest` CHARACTER SET latin1 COLLATE latin1_swedish_ci; -- ------------------------------------- -- Tables DROP TABLE IF EXISTS `dbtest`.`tb1`; CREATE TABLE `dbtest`.`tb1` ( `id` INT(10) NULL, `name` VARCHAR(50) NULL, INDEX `id` (`id`) ) ENGINE = INNODB; SET FOREIGN_KEY_CHECKS = 1; -- ---------------------------------------------------------------------- -- EOF