Hi,
i purged to data of the table, but no success with login.
Error: [620][-none-][ERROR] MySQL error 1146: Table 'sugarcrm.tracker' doesn't exist
then i dropped the table and recreated it from backup with that sql statement:
Code:
CREATE TABLE `sugarcrm`.`tracker` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`monitor_id` varchar(36) NOT NULL,
`user_id` varchar(36) DEFAULT NULL,
`module_name` varchar(255) DEFAULT NULL,
`item_id` varchar(36) DEFAULT NULL,
`item_summary` varchar(255) DEFAULT NULL,
`date_modified` datetime DEFAULT NULL,
`action` varchar(255) DEFAULT NULL,
`session_id` varchar(36) DEFAULT NULL,
`visible` tinyint(4) DEFAULT '0',
`deleted` tinyint(4) DEFAULT '0',
PRIMARY KEY (`id`),
KEY `idx_tracker_iid` (`item_id`),
KEY `idx_tracker_monitor_id` (`monitor_id`),
KEY `idx_tracker_userid_itemid_vis` (`user_id`,`item_id`,`visible`),
KEY `idx_tracker_userid_vis_id` (`user_id`,`visible`,`id`)
) ENGINE=InnoDB AUTO_INCREMENT=111914 DEFAULT CHARSET=utf8;
Error in sugarcrm.log is still the same: Error: [620][-none-][ERROR] MySQL error 1146: Table 'sugarcrm.tracker' doesn't exist
But for some reasons all the login tryouts are written to that table. id was incremented with every login with action authenticate and login.
Any other ideas? I think i have to migrate the table tracker with all the other tables again.
For the migration i used ESF Database Convert, as the mysql Migration Toolkit has problems to migrate about 20 Tables for various reasons (datetime ....)
ESF did a better job and migrated all tables "successfully".
thanks a lot,
Marcus
Bookmarks