forums › forums › SQLyog › SQLyog: Bugs / Feature Requests › v4.0.6 RC1 – SQL dump doesn´t work
- This topic is empty.
-
AuthorPosts
-
-
June 1, 2005 at 3:34 pm #9025
larsen
ParticipantHello,
I just download the current version and when I try to export a table as a sql dump, the created file just contains this:
Code:/*
SQLyog v4.06 RC1
Host – 4.1.12-Max : Database –
*********************************************************************
Server version : 4.1.12-Max
*/Lars
-
June 1, 2005 at 8:20 pm #18019
peterlaursen
Participantyes it should look somewhat like
Quote:/*SQLyog Enterprise v4.06 RC1
Host – 5.0.6-beta-nt-max : Database – test
*********************************************************************
Server version : 5.0.6-beta-nt-max
*/
create database if not exists `test`;
USE `test`;
/*Table structure for table `mytable` */
drop table if exists `mytable`;
CREATE TABLE `mytable` (
`ID` bigint(20) NOT NULL,
`mytext` varchar(255) NOT NULL,
PRIMARY KEY (`ID`,`mytext`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*Data for the table `mytable` */
insert into `charindex` values (1,'dfdfdfdf');
insert into `charindex` values (2,'dfdfhhdf');
insert into `charindex` values (3,'dfdfjjdf');
-
June 2, 2005 at 10:33 am #18020
Shadow
MemberPerhaps you tried to export an empty table!
-
June 3, 2005 at 1:28 pm #18021
larsen
ParticipantHello. I just tested this once more.
Quote:Perhaps you tried to export an empty table!Nope. But something very similiar 😕
I barely dare to say… I didn´t select any table to export 🙄
I´m really very sorry for that!
As a suggestion to prevent others from doing this (if anyone is as stupid as me what I can´t imagine): There should be a warning message if one hasn´t selected any table.
-
June 4, 2005 at 6:33 am #18022
Ritesh
MemberWhich option are you using?
In Export As SQL Dump window, SQLyog will throw a warning if there are no table(s) selected.
Can you post a screenshot of the window?
-
June 4, 2005 at 6:38 am #18023
peterlaursen
Participant@ Ritesh
Her is your screen-dump!
Chosing One DB in the object browser and ANOTHER in the export dialogue generates this eror!
-
June 4, 2005 at 6:40 am #18024
Ritesh
MemberIts due to the same reason as reported at http://www.webyog.com/forums/index.php?act…=6&t=1458&st=0&
It will be fixed in v4.07.
-
June 6, 2005 at 3:13 pm #18025
larsen
ParticipantHmm, perhaps it wasn´t my mistake: When you select the root entry and in the sql dump window select any DB, select all tables and click on export, the output is empty (besides the above mentioned comment).
-
June 12, 2005 at 10:24 am #18026
Ritesh
MemberBug fixed in v4.07 development tree.
-
-
AuthorPosts
- You must be logged in to reply to this topic.