If you really want to wipe out all of your notes, you can use the SQL workbench (Admin > Database Utilities) to do this. Use the following statement:
update Person set Notes = null
if you only want to clear the notes on Clubbers but not Leaders you could use:
update Person set Notes = null where Member_Type = 'Clubber'