Forum Replies Created
-
AuthorPosts
-
PatMcMember
I may have found it.
Here is what the create table object looks like for the problem table
CREATE TABLE `tbl_companyinfo` (
`comp_ID` int(11) NOT NULL auto_increment,
`comp_Name` varchar(50) default NULL,
`comp_Address1` varchar(255) default NULL,
`comp_Address2` varchar(50) default NULL,
`comp_City` varchar(50) default NULL,
`comp_State` varchar(20) default NULL,
`comp_Zip` varchar(20) default NULL,
`comp_Country` varchar(50) default NULL,
`comp_Phone` varchar(30) default NULL,
`comp_Fax` varchar(30) default NULL,
`comp_Email` varchar(50) default NULL,
`comp_ChargeBase` tinyint(1) default NULL,
`comp_ChargeWeight` tinyint(1) default NULL,
`comp_ChargeExtension` tinyint(1) default NULL,
`comp_ShowUpSell` tinyint(1) default NULL,
`comp_EnableShipping` tinyint(1) default NULL,
PRIMARY KEY (`comp_ID`,`comp_ID`),
KEY `CompanyID` (`comp_ID`)
) TYPE=MyISAM
When I delete the comp_ID field and re-create it the PRIMARY KEY (`comp_ID`,`comp_ID`), changes to PRIMARY KEY (`comp_ID`), and the database copies down without error.
I hope the application still runs properly.
PatMcMemberNo I didn't.
Thanks you very much.
PatMcMemberThanks Ritesh.
Not the functionality I would like but with the Synchronization scheduled I now have it in the Job Manager list. I'd rather not have to schedule it to be able to get it in the Job Manager so I could execute it.
When I highlight a task in the Job Manager list and click Exicute I get a pop-up that says “successfully initialized” but the task's synchronization does not happen.
Perhaps I don't understand the designed functionality of the Execute button.
I expect it to execute the saved task which is a sync from remote to local.
???
-
AuthorPosts