import went wrong somehow...objid is the member id...i would export old version 6 data rework it then insert into new db
lets say you export the Tags table from old 6 DB and Your only worried about profiles so its a little query to run to get them only(phpmyadmin): SELECT * FROM `Tags` WHERE `Type` = 'profile';
you will get only the profile tags ...now you have to **** use the export at the bottom to get them out ****.
with above you get(forget about top stuff):
INSERT INTO `Tags` VALUES ('sexy', 1, 'profile');
INSERT INTO `Tags` VALUES ('hungry', 2, 'profile');
we need it to say:
INSERT INTO `sys_tags` VALUES ('sexy', 1, 'profile', '2009-12-28 23:10:07');
INSERT INTO `sys_tags` VALUES ('hungry', 2, 'profile', '2009-12-28 23:10:07');
i use an editor that has find and replace all...non windows based
and do replace all `Tags` with `sys_tags` and replace all ); with , '2009-12-28 23:10:07');
this will do all your tags so you can then simply run the sql after you backup the table.
have fun