log of merged user while import?

efendi

Member
hello,

is there a log of merged user while import from vB 3?
unfortunately i marked auto merge while the import and now i have a problem with user and their login :)

thank you
 
Run this db query:

Code:
SELECT COUNT(DISTINCT new_id) AS newCount, COUNT(*) AS oldCount
FROM xf_import_log
WHERE content_type = 'user';

That will return the old and new user counts. The difference between the two will be the number of merged users.

edit - your log table has a different name, so use this:

Code:
SELECT COUNT(DISTINCT new_id) AS newCount, COUNT(*) AS oldCount
FROM final_archived_import_log
WHERE content_type = 'user';
 
Top Bottom