forums › forums › SQLyog › Sync tools, Migration, Scheduled Backup and Notifications › Sync Agent Abnormal Termination
- This topic is empty.
-
AuthorPosts
-
-
September 28, 2005 at 8:18 am #9257nathanMember
Hello,
I'm syncing 2 db, one on my loclahost, one on my web server. I use the HTTP tunnel.
The DB has a around 150 tables. The job agent systematically stops with a Window error (Sja.exe has stopped, click here to send e report…) for the same 2 tables.
Both DB are Mysql 4.1. Any ideas?
I paste here info on these tables:
Code:/*Column Information For – vtigercrm4_2.customerdetails*/
———————————————————Field Type Collation Null Key Default Extra Privileges Comment
—————— ——- —————– —— —— ——- —— ——————————- ——-
customerid int(19) NULL PRI 0 select,insert,update,references
portal char(3) latin1_german1_ci YES (NULL) select,insert,update,references
support_start_date date NULL YES (NULL) select,insert,update,references
support_end_date date NULL YES (NULL) select,insert,update,references/*Index Information For – vtigercrm4_2.customerdetails*/
——————————————————–Table Non_unique Key_name Seq_in_index Column_name Collation Cardinality Sub_part Packed Null Index_type Comment
————— ———- ——– ———— ———– ——— ———– ——– —— —— ———- ——-
customerdetails 0 PRIMARY 1 customerid A 12 (NULL) (NULL) BTREE/*DDL Information For – vtigercrm4_2.customerdetails*/
——————————————————Table Create Table
————— ——————————————————————
customerdetails CREATE TABLE `customerdetails` (
`customerid` int(19) NOT NULL default '0',
`portal` char(3) collate latin1_german1_ci default NULL,
`support_start_date` date default NULL,
`support_end_date` date default NULL,
PRIMARY KEY (`customerid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_german1_ciAND
Code:/*Column Information For – vtigercrm4_2.portalinfo*/
—————————————————-Field Type Collation Null Key Default Extra Privileges Comment
————— ———– —————– —— —— ——————- —— ——————————- ——-
id int(11) NULL PRI 0 select,insert,update,references
user_name varchar(50) latin1_german1_ci YES (NULL) select,insert,update,references
user_password varchar(30) latin1_german1_ci YES (NULL) select,insert,update,references
type varchar(5) latin1_german1_ci YES (NULL) select,insert,update,references
last_login_time datetime NULL 0000-00-00 00:00:00 select,insert,update,references
login_time datetime NULL 0000-00-00 00:00:00 select,insert,update,references
logout_time datetime NULL 0000-00-00 00:00:00 select,insert,update,references
isactive int(1) NULL YES (NULL) select,insert,update,references/*Index Information For – vtigercrm4_2.portalinfo*/
—————————————————Table Non_unique Key_name Seq_in_index Column_name Collation Cardinality Sub_part Packed Null Index_type Comment
———- ———- ——– ———— ———– ——— ———– ——– —— —— ———- ——-
portalinfo 0 PRIMARY 1 id A 1 (NULL) (NULL) BTREE/*DDL Information For – vtigercrm4_2.portalinfo*/
————————————————-Table Create Table
———- ———————————————————————–
portalinfo CREATE TABLE `portalinfo` (
`id` int(11) NOT NULL default '0',
`user_name` varchar(50) collate latin1_german1_ci default NULL,
`user_password` varchar(30) collate latin1_german1_ci default NULL,
`type` varchar(5) collate latin1_german1_ci default NULL,
`last_login_time` datetime NOT NULL default '0000-00-00 00:00:00',
`login_time` datetime NOT NULL default '0000-00-00 00:00:00',
`logout_time` datetime NOT NULL default '0000-00-00 00:00:00',
`isactive` int(1) default NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_german1_ci -
September 28, 2005 at 9:06 am #19308RiteshMember
This is very strange.
Can you mail me sample data to reproduce the error at our end?
-
September 28, 2005 at 12:06 pm #19309peterlaursenParticipant
I have no prolems sync'ing this SCHEMA!
What is the exact MySQL and php-version?
-
September 28, 2005 at 2:41 pm #19310nathanMember
Well… I made another copy of the DB and it has worked. Some bit has probably been lost in the tunnel during the first copy…. Sorry for that post and thank you for your answers…
Great soft!
-
September 28, 2005 at 5:16 pm #19311RiteshMember
All's well that end's well 🙂
-
-
AuthorPosts
- You must be logged in to reply to this topic.