Help - Search - Members - Calendar
Full Version: Sqlyog 5.1 Rc1
Webyog Forums > SQLyog > SQLyog BETA Discussions
peterlaursen
/* prepare data */

CODE
create database `dba` default charset = latin1;
create database `dbb` default charset = utf8;
create table `dba`.`tbla` (    `id` bigint   NOT NULL AUTO_INCREMENT ,  `t` varchar (50)   NULL  , PRIMARY KEY ( `id` )  );
create table `dbb`.`tbla` (    `id` bigint   NOT NULL AUTO_INCREMENT ,  `t` varchar (50)   NULL  , PRIMARY KEY ( `id` )  );
insert into `dba`.`tbla` (`id`,`t`) values ( NULL,'it is important to write \'זרו\'');
insert into `dbb`.`tbla` (`id`,`t`) values ( NULL,'it is important');



/* run this data sync */

CODE
<job version="4.2">
<syncjob>
<abortonerror abort="no" />
<fkcheck check="no" />
<source>
<host>localhost</host>
<user>root</user>
<pwd>*******</pwd>
<port>3306</port>
<charset>latin1</charset>
<database>dba</database>
</source>
<target>
<host>localhost</host>
<user>root</user>
<pwd>*******</pwd>
<port>3306</port>
<charset>utf8</charset>
<database>dbb</database>
</target>
<tables all="yes" />
</syncjob>
</job>



/* and you get */

CODE
SQLyog Job Agent Version 5.1
Copyright (c) Webyog Softworks Pvt. Ltd.. All Rights Reserved.

Sync started at Tue Apr 18 14:47:56 2006


Table                      SrcRows  TgtRows  Inserted  Updated  Deleted
=========================  =======  =======  ========  =======  =======
`tbla`                           1        1         0        1        1  


Total time taken - 1 sec(s)


Table at target is empty after sync. This cannot be the idea ?!
(only checked Direct Connection)
Ritesh
I will check upon this now.
peterlaursen
No change with RC2!
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2008 Invision Power Services, Inc.