Bug #78434 | Connection to server fails for a particular table | ||
---|---|---|---|
Submitted: | 15 Sep 2015 5:23 | Modified: | 2 Oct 2015 4:04 |
Reporter: | Joydeep Dey | Email Updates: | |
Status: | Can't repeat | Impact on me: | |
Category: | MySQL Workbench: SQL Editor | Severity: | S2 (Serious) |
Version: | 6.3.4.0 | OS: | Windows (7 x86 Service Pack 1) |
Assigned to: | CPU Architecture: | Any | |
Tags: | ssh connection, workbench |
[15 Sep 2015 5:23]
Joydeep Dey
[15 Sep 2015 11:06]
MySQL Verification Team
If you use the command line mysql.exe it works?. Thanks.
[15 Sep 2015 14:01]
Joydeep Dey
I haven't tested yet in command line. I'll test and inform. However, through other tool or from a Database program, the table is accessible.
[15 Sep 2015 14:01]
Joydeep Dey
I haven't tested yet in command line. I'll test and inform. However, through other tool or from a Database program, the table is accessible.
[16 Sep 2015 2:28]
Joydeep Dey
Well! I have tried to connect it from command line using mysql.exe and it was connected successfully. With other tables, that table is also accessible (checked by a SELECT query). No problem, at all.
[22 Sep 2015 5:02]
MySQL Verification Team
I tried it on Ubuntu, Win7 but I'm not seeing this issue with dummy data, could you please provide complete repeatable test case i.e table definition(only conn_dists, since you have already provided conn_infos), subset of data of below tables to reproduce the issue at our end(you may mark it as private after uploading)- conn_infos conn_dists Thanks, Umesh
[28 Sep 2015 10:23]
Joydeep Dey
Hi! Sorry for the delay. Here I'm giving 2 more connected tables definitions. CREATE TABLE `conn_dists` ( `dist_id` int(11) NOT NULL, `a_route_id` int(11) NOT NULL, `dist_name` varchar(3) DEFAULT NULL, `route_id` int(11) NOT NULL, `self_id` int(11) NOT NULL, PRIMARY KEY (`dist_id`), KEY `FK_route_id` (`route_id`), KEY `FK_a_conndists` (`a_route_id`), CONSTRAINT `FK_a_conndists` FOREIGN KEY (`a_route_id`) REFERENCES `a_conn_routes` (`a_route_id`) ON DELETE CASCADE, CONSTRAINT `FK_route_id` FOREIGN KEY (`route_id`) REFERENCES `conn_routes` (`route_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE `a_conn_routes` ( `a_route_id` int(11) NOT NULL, `station_id` int(11) NOT NULL, `route_name` varchar(12) DEFAULT NULL, PRIMARY KEY (`a_route_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; I haven't tried with any linux environment, since I'm bounded with some limited privileges. However, the server is on a Cent OS machine, and the database was exported from one Linux machine to another (current server and both are Cent OS). But it was imported via Workbench in Win7.
[29 Sep 2015 13:44]
MySQL Verification Team
I couldn't repeat too so I assume is something on your/server environment.
[2 Oct 2015 4:01]
Joydeep Dey
I don't understanding actually. If the server had a problem then probably other applications (e.g. SQLYog, or Java/Hibernate application) were not be able to access the all the tables of same DB. All are situated in same client environment targeting to same server environment. Then why is it only happening with Workbench?