Why not try the 30-day free trial of SQLite Maestro - are they still doing that?
Okay, when you import into the MyLog Aircraft table in SQLite Maestro, you would select "Insert New" only, rather than "Update or Insert".
And tackling all the "..." aircraft is easy in SQLite Maestro. For example, I regularly check for aircraft with missing details, using this query:
SELECT
aircraft.MS,
aircraft.AR,
aircraft."AT",
aircraft.AN,
aircraft.AC,
aircraft.CN,
aircraft.PT,
aircraft.LK,
aircraft.PT2,
aircraft.LK2
FROM
aircraft
WHERE
(aircraft."AT" = "...") OR
(aircraft."AT" IS NULL) OR
(aircraft."AT" = "")
Just note that you need to CLOSE Radarbox before doing updates in SQLite Maestro, to avoid database update conflicts.
[attachment deleted by admin]