You should be able to do something like this:
Code:
UPDATE user SET msn='', icq=''
and of course add whatever other fields you want. Also, for the bio, location, interests, occupation:
Code:
UPDATE userfield SET field1='', field2='', field3='', field4=''
and if you have other custom profile fields you could add them to that query.
As always, you should make sure you have a database backup before modifying the database directly, just in case.
Edit: you could also add "WHERE usergroupid=X" to do it only for a certain group, if you have other users (admins and mods) that you don't want to change.