You can use regex to search for fields with a high number of characters, which should at least give you some clues where to look. For instance, to search for notes with fields containing 1000+ characters – re:.{1000}
– or you can restrict that to a specific field – FIELDNAME:re:.{1000}
– but you might need to start even higher than 1000 .
2 Likes