Hi,
1st of all I want to thank you for your work, it's amazing!
sometime ago I moved from xoops (news, forum) with the Xoops import module, as I'm a beginner with php and MySQL, I lost forum posts (3 years posts), but kept the database hoping that one day I'd be able to understand it and import it.
Here and there I read about mysql and the drupal tools like Table Wizard, Scheme, etc.. tried them, but didn't get them to work with my tables.
I ended up setting a clone from the website on home pc, used Migrating from xoops guide to import forum, but I fail on the "Cleaning up / Statistics".
mysql> INSERT into history (uid, nid, timestamp) SELECT uid, nid, created FROM node;
ERROR 1062 (23000): Duplicate entry '1-533' for key 'PRIMARY'
mysql> INSERT into node_comment_statistics (nid, last_comment_timestamp, last_comment_name, last_comment_uid, comment_count) SELECT nid, created, '', '1', '0' FROM node;
ERROR 1062 (23000): Duplicate entry '1' for key 'PRIMARY'
mysql>